diff options
author | Alexey Vakhov <vakhov@gmail.com> | 2012-05-22 11:45:59 +0400 |
---|---|---|
committer | Alexey Vakhov <vakhov@gmail.com> | 2012-05-22 11:45:59 +0400 |
commit | 09be6921590a7e4ded515deb8ce77566fa41fed5 (patch) | |
tree | a186fed495ab40ae03f37db9322b95ce391edc46 /railties | |
parent | 4220290d09e682d8454048312b89efaf84f028be (diff) | |
download | rails-09be6921590a7e4ded515deb8ce77566fa41fed5.tar.gz rails-09be6921590a7e4ded515deb8ce77566fa41fed5.tar.bz2 rails-09be6921590a7e4ded515deb8ce77566fa41fed5.zip |
Remove obsolete comment from generator gem method
This comment about :env option for gem method was actual for rails 2.3
without bundler. Now bundler uses grups for this goal.
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/rails/generators/actions.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/railties/lib/rails/generators/actions.rb b/railties/lib/rails/generators/actions.rb index 6cd2ea2bbd..703501e6f0 100644 --- a/railties/lib/rails/generators/actions.rb +++ b/railties/lib/rails/generators/actions.rb @@ -5,8 +5,7 @@ module Rails module Generators module Actions - # Adds an entry into Gemfile for the supplied gem. If env - # is specified, add the gem to the given environment. + # Adds an entry into Gemfile for the supplied gem. # # gem "rspec", :group => :test # gem "technoweenie-restful-authentication", :lib => "restful-authentication", :source => "http://gems.github.com/" |