diff options
author | Wojciech Wnętrzak <w.wnetrzak@gmail.com> | 2011-02-12 13:31:14 +0100 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-02-12 22:39:06 -0200 |
commit | 22e14ea5739f552dfc663f563835fa27669d627d (patch) | |
tree | f7cd081afb3d1929c416deb417d42e80c2730b86 /railties | |
parent | 33cc36678b7ff5ac84407df17475e1b3ffc9a2d8 (diff) | |
download | rails-22e14ea5739f552dfc663f563835fa27669d627d.tar.gz rails-22e14ea5739f552dfc663f563835fa27669d627d.tar.bz2 rails-22e14ea5739f552dfc663f563835fa27669d627d.zip |
added proper require for ruby-debug19 gem to generated Gemfile
[#6419 state:committed]
Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/Gemfile b/railties/lib/rails/generators/rails/app/templates/Gemfile index 00fe100245..c383d4842f 100644 --- a/railties/lib/rails/generators/rails/app/templates/Gemfile +++ b/railties/lib/rails/generators/rails/app/templates/Gemfile @@ -12,7 +12,7 @@ source 'http://rubygems.org' # To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+) # gem 'ruby-debug' -# gem 'ruby-debug19' +# gem 'ruby-debug19', :require => 'ruby-debug' # Bundle the extra gems: # gem 'bj' |