diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-05-13 13:33:20 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-05-13 13:33:20 -0300 |
commit | 6e55d30ca8a5a165211dfd0ba7a2beef3ad23cda (patch) | |
tree | 9578be36044d41788ebace24f5d793085ad3857d /railties/lib/rails/generators | |
parent | 59b773705e4d91c458a9572dc63c11eab85e633f (diff) | |
download | rails-6e55d30ca8a5a165211dfd0ba7a2beef3ad23cda.tar.gz rails-6e55d30ca8a5a165211dfd0ba7a2beef3ad23cda.tar.bz2 rails-6e55d30ca8a5a165211dfd0ba7a2beef3ad23cda.zip |
Remove remaining require 'rubygems'
Diffstat (limited to 'railties/lib/rails/generators')
-rw-r--r-- | railties/lib/rails/generators/app_base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/app_base.rb b/railties/lib/rails/generators/app_base.rb index 6df33d65e9..2c1742c6be 100644 --- a/railties/lib/rails/generators/app_base.rb +++ b/railties/lib/rails/generators/app_base.rb @@ -247,7 +247,7 @@ module Rails # end-user gets the bundler commands called anyway, so no big deal. # # Thanks to James Tucker for the Gem tricks involved in this call. - print `"#{Gem.ruby}" -rubygems "#{Gem.bin_path('bundler', 'bundle')}" #{command}` + print `"#{Gem.ruby}" "#{Gem.bin_path('bundler', 'bundle')}" #{command}` end def run_bundle |