aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/app_base.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2011-06-11 01:18:08 +0200
committerXavier Noria <fxn@hashref.com>2011-06-11 01:18:08 +0200
commitca312b6612e2c76aabd301807a1b63fc050e46d5 (patch)
treef1e99d91cfe42983df373a4575f409a8be14561e /railties/lib/rails/generators/app_base.rb
parent4699c933019680e11616756b49ab2dad1e53dcda (diff)
downloadrails-ca312b6612e2c76aabd301807a1b63fc050e46d5.tar.gz
rails-ca312b6612e2c76aabd301807a1b63fc050e46d5.tar.bz2
rails-ca312b6612e2c76aabd301807a1b63fc050e46d5.zip
s/Bundle/Bundler/
Diffstat (limited to 'railties/lib/rails/generators/app_base.rb')
-rw-r--r--railties/lib/rails/generators/app_base.rb2
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 f07e090c25..1196e2b7eb 100644
--- a/railties/lib/rails/generators/app_base.rb
+++ b/railties/lib/rails/generators/app_base.rb
@@ -190,7 +190,7 @@ module Rails
def bundle_command(command)
say_status :run, "bundle #{command}"
- # We are going to shell out rather than invoking Bundle::CLI.new(command)
+ # We are going to shell out rather than invoking Bundler::CLI.new(command)
# because `rails new` loads the Thor gem and on the other hand bundler uses
# its own vendored Thor, which could be a different version. Running both
# things in the same process is a recipe for a night with paracetamol.