├── .gitignore ├── LICENCE ├── README.rdoc ├── Rakefile ├── VERSION ├── bin └── wpcapify └── lib ├── manifest-yml.rb ├── wp-capistrano.rb ├── wp-capistrano ├── deploy.rb ├── feature │ ├── cforms.rb │ ├── compass.rb │ ├── htaccess.rb │ ├── makefile-manifest.rb │ ├── plugin-install.rb │ ├── sass.rb │ ├── shared-dirs.rb │ └── wp-super-cache.rb ├── setup.rb └── wp-config.php.erb ├── wp-config.rb └── wp_capistrano └── deploy.rb /.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | wp-capistrano.gemspec 3 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/LICENCE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.3.1 -------------------------------------------------------------------------------- /bin/wpcapify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/bin/wpcapify -------------------------------------------------------------------------------- /lib/manifest-yml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/lib/manifest-yml.rb -------------------------------------------------------------------------------- /lib/wp-capistrano.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/lib/wp-capistrano.rb -------------------------------------------------------------------------------- /lib/wp-capistrano/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/lib/wp-capistrano/deploy.rb -------------------------------------------------------------------------------- /lib/wp-capistrano/feature/cforms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/lib/wp-capistrano/feature/cforms.rb -------------------------------------------------------------------------------- /lib/wp-capistrano/feature/compass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/lib/wp-capistrano/feature/compass.rb -------------------------------------------------------------------------------- /lib/wp-capistrano/feature/htaccess.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/lib/wp-capistrano/feature/htaccess.rb -------------------------------------------------------------------------------- /lib/wp-capistrano/feature/makefile-manifest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/lib/wp-capistrano/feature/makefile-manifest.rb -------------------------------------------------------------------------------- /lib/wp-capistrano/feature/plugin-install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/lib/wp-capistrano/feature/plugin-install.rb -------------------------------------------------------------------------------- /lib/wp-capistrano/feature/sass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/lib/wp-capistrano/feature/sass.rb -------------------------------------------------------------------------------- /lib/wp-capistrano/feature/shared-dirs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/lib/wp-capistrano/feature/shared-dirs.rb -------------------------------------------------------------------------------- /lib/wp-capistrano/feature/wp-super-cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/lib/wp-capistrano/feature/wp-super-cache.rb -------------------------------------------------------------------------------- /lib/wp-capistrano/setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/lib/wp-capistrano/setup.rb -------------------------------------------------------------------------------- /lib/wp-capistrano/wp-config.php.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/lib/wp-capistrano/wp-config.php.erb -------------------------------------------------------------------------------- /lib/wp-config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/lib/wp-config.rb -------------------------------------------------------------------------------- /lib/wp_capistrano/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxw/wp-capistrano/HEAD/lib/wp_capistrano/deploy.rb --------------------------------------------------------------------------------