diff options
author | siong1987 <siong1987@gmail.com> | 2010-09-11 14:09:16 -0500 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2010-10-11 19:47:53 -0200 |
commit | 708e09448ba41c45f189c6b1adc989eba8994b20 (patch) | |
tree | bb530c0cc0b0e913923236b07833890f7da618e5 /railties/lib/rails/tasks | |
parent | cecccf11562f173eb504ac8b7600397d1d3deeb7 (diff) | |
download | rails-708e09448ba41c45f189c6b1adc989eba8994b20.tar.gz rails-708e09448ba41c45f189c6b1adc989eba8994b20.tar.bz2 rails-708e09448ba41c45f189c6b1adc989eba8994b20.zip |
-j parameter added to rails new command.
Now you can start your apps with jquery with rails new myapp -j jquery, the default is still prototype
[#5613 state:committed]
Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
Diffstat (limited to 'railties/lib/rails/tasks')
-rw-r--r-- | railties/lib/rails/tasks/framework.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/tasks/framework.rake b/railties/lib/rails/tasks/framework.rake index 745a32a1fa..5222b7bf50 100644 --- a/railties/lib/rails/tasks/framework.rake +++ b/railties/lib/rails/tasks/framework.rake @@ -60,7 +60,7 @@ namespace :rails do # desc "Update Prototype javascripts from your current rails install" task :javascripts do - invoke_from_app_generator :create_prototype_files + invoke_from_app_generator :create_javascript_files end # desc "Adds new scripts to the application script/ directory" |