Advertisement
kevin25

capfile

May 15th, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.95 KB | None | 0 0
  1. # Load DSL and set up stages
  2. require 'capistrano/setup'
  3.  
  4. # Include default deployment tasks
  5. require 'capistrano/deploy'
  6.  
  7. # Include tasks from other gems included in your Gemfile
  8. #
  9. # For documentation on these, see for example:
  10. #
  11. #   https://github.com/capistrano/rvm
  12. #   https://github.com/capistrano/rbenv
  13. #   https://github.com/capistrano/chruby
  14. #   https://github.com/capistrano/bundler
  15. #   https://github.com/capistrano/rails
  16. #   https://github.com/capistrano/passenger
  17. #
  18. # require 'capistrano/rvm'
  19. require 'capistrano/rbenv'
  20. # require 'capistrano/chruby'
  21. require 'capistrano/bundler'
  22. require 'capistrano/rails'
  23. require 'capistrano/rails/assets'
  24. require 'capistrano/rails/migrations'
  25. # require 'capistrano/passenger'
  26. set :rbenv_ruby, '2.2.2'
  27. # Load custom tasks from `lib/capistrano/tasks` if you have any defined
  28. Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }
  29. Dir.glob('lib/capistrano/tasks/*.cap').each { |r| import r }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement