README.md in capistrano-rails-1.0.0 vs README.md in capistrano-rails-1.1.0

- old
+ new

@@ -1,18 +1,16 @@ # Capistrano::Rails Rails specific tasks for Capistrano v3: - `cap deploy:migrate` - - `cap deploy:normalise_assets` + - `cap deploy:compile_assets` -Tasks are currently early examples. - Some rails specific options. ```ruby -set :rails_env, 'staging' # If the environment differs from the stage +set :rails_env, 'staging' # If the environment differs from the stage name set :migration_role, 'migrator' # Defaults to 'db' ``` If you need to touch `public/images`, `public/javascripts` and `public/stylesheets` on each deploy: @@ -25,22 +23,20 @@ Add this line to your application's Gemfile: gem 'capistrano', '~> 3.0.0' gem 'capistrano-rails' -And then execute: - - $ bundle --binstubs - $ cap install - ## Usage - # Capfile +Require everything (bundler, rails/assets and rails/migrations) + # Capfile require 'capistrano/rails' - # or require just what you need +Or require just what you need manually: + # Capfile + require 'capistrano/bundler' # Rails needs Bundler, right? require 'capistrano/rails/assets' require 'capistrano/rails/migrations' ## Contributing