Skip to content

Commit

Permalink
Don't prefix ruby and prefix rails
Browse files Browse the repository at this point in the history
  • Loading branch information
kirs committed Nov 29, 2013
1 parent d1381b1 commit df3fba9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.1.1

* ruby is not prefixed with `bundle exec` anymore by default
* prefix rails with `bundle exec` by default

# 1.1.0

* Switching to new command map (https://github.com/capistrano/sshkit/pull/45)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Configurable options, shown here with defaults:
set :bundle_without, %w{development test}.join(' ')
set :bundle_binstubs, -> { shared_path.join('bin') }
set :bundle_roles, :all
set :bundle_bins, %w(gem rake ruby)
set :bundle_bins, %w(gem rake rails)

By default, the plugin adds `bundle exec` prefix to common executables listed in `bundle_bins` option. You can add any custom executable to this list:

Expand Down
2 changes: 1 addition & 1 deletion lib/capistrano/tasks/bundler.cap
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ namespace :load do
set :bundle_without, %w{development test}.join(' ')
set :bundle_binstubs, -> { shared_path.join('bin') }
set :bundle_roles, :all
set :bundle_bins, %w{gem rake ruby}
set :bundle_bins, %w{gem rake rails}
end
end

0 comments on commit df3fba9

Please sign in to comment.