diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2011-09-21 20:51:30 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-09-21 20:53:08 -0300 |
commit | 007f56701102647088673d92b165c3d862fbba22 (patch) | |
tree | 22e8152f2bf7235ecdf24152907bd284b050171a /railties | |
parent | f373f296d0347f025402049d94901d57987e226c (diff) | |
download | rails-007f56701102647088673d92b165c3d862fbba22.tar.gz rails-007f56701102647088673d92b165c3d862fbba22.tar.bz2 rails-007f56701102647088673d92b165c3d862fbba22.zip |
Add jquery-rails to Gemfile of plugins, test/dummy app uses it.
Closes #3091
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/rails/generators/rails/plugin_new/templates/Gemfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/rails/plugin_new/templates/Gemfile b/railties/lib/rails/generators/rails/plugin_new/templates/Gemfile index 160baa6906..f4efd3af74 100644 --- a/railties/lib/rails/generators/rails/plugin_new/templates/Gemfile +++ b/railties/lib/rails/generators/rails/plugin_new/templates/Gemfile @@ -5,6 +5,9 @@ source "http://rubygems.org" # development dependencies will be added by default to the :development group. gemspec +# jquery-rails is used by the dummy application +gem "jquery-rails" + # Declare any dependencies that are still in development here instead of in # your gemspec. These might include edge Rails or gems from your path or # Git. Remember to move these dependencies to your gemspec before releasing @@ -17,4 +20,4 @@ gemspec <% end -%> # To use debugger -# <%= ruby_debugger_gemfile_entry %>
\ No newline at end of file +# <%= ruby_debugger_gemfile_entry %> |