diff options
| author | mo khan <mo@mokhan.ca> | 2015-05-22 19:20:21 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2015-05-22 19:20:21 -0600 |
| commit | 43de7ea4838fca0ecd619e0f200deee2942779f3 (patch) | |
| tree | 13ea30940c6c65a740e109b752ee7ba9c582c97f /Capfile | |
| parent | 1c76e7c3a74efa31e50a5e2836cca36e8642e17b (diff) | |
deploy with capistrano.
Diffstat (limited to 'Capfile')
| -rw-r--r-- | Capfile | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -0,0 +1,28 @@ +# Load DSL and set up stages +require 'capistrano/setup' + +# Include default deployment tasks +require 'capistrano/deploy' + +# Include tasks from other gems included in your Gemfile +# +# For documentation on these, see for example: +# +# https://github.com/capistrano/rvm +# https://github.com/capistrano/rbenv +# https://github.com/capistrano/chruby +# https://github.com/capistrano/bundler +# https://github.com/capistrano/rails +# https://github.com/capistrano/passenger +# +# require 'capistrano/rvm' +require 'capistrano/rbenv' +# require 'capistrano/chruby' +require 'capistrano/bundler' +require 'capistrano/rails' +# require 'capistrano/rails/assets' +# require 'capistrano/rails/migrations' +# require 'capistrano/passenger' + +# Load custom tasks from `lib/capistrano/tasks` if you have any defined +Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r } |
