mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Adds update_javascripts task which will fetch all the latest js files from railties dir.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2607 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
e3bb9e7a9c
commit
35d543f422
3 changed files with 9 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Added update_javascripts task which will fetch all the latest js files from your current rails install. Use after updating rails. [Tobias Luetke]
|
||||
|
||||
* Added cleaning of RAILS_ROOT to useless elements such as '../non-dot-dot/'. Provides cleaner backtraces and error messages. [Nicholas Seckar]
|
||||
|
||||
* Made the instantiated/transactional fixtures settings be controlled through Rails::Initializer. Transactional and non-instantiated fixtures are default from now on. [Florian Weber]
|
||||
|
|
1
railties/lib/railties_path.rb
Normal file
1
railties/lib/railties_path.rb
Normal file
|
@ -0,0 +1 @@
|
|||
RAILTIES_PATH = File.expand_path(File.dirname(__FILE__))
|
6
railties/lib/tasks/javascripts.rake
Normal file
6
railties/lib/tasks/javascripts.rake
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
desc "Update your javascripts from your current rails install."
|
||||
task :update_javascripts do
|
||||
require 'railties_path'
|
||||
FileUtils.cp(Dir[RAILTIES_PATH + '/../html/javascripts/*.js'], RAILS_ROOT + '/public/javascripts/')
|
||||
end
|
Loading…
Reference in a new issue