mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
69 lines
2.6 KiB
Ruby
69 lines
2.6 KiB
Ruby
namespace :rails do
|
|
namespace :freeze do
|
|
desc "The rails:freeze:gems is deprecated, please use bundle install instead"
|
|
task :gems do
|
|
puts "The rails:freeze:gems is deprecated, please use bundle install instead"
|
|
end
|
|
|
|
desc 'The freeze:edge command has been deprecated, specify the path setting in your app Gemfile instead and bundle install'
|
|
task :edge do
|
|
puts 'The freeze:edge command has been deprecated, specify the path setting in your app Gemfile instead and bundle install'
|
|
end
|
|
end
|
|
|
|
desc 'The unfreeze command has been deprecated, please use bundler commands instead'
|
|
task :unfreeze do
|
|
puts 'The unfreeze command has been deprecated, please use bundler commands instead'
|
|
end
|
|
|
|
desc "Update both configs, scripts and public/javascripts from Rails"
|
|
task :update => [ "update:configs", "update:javascripts", "update:scripts", "update:application_controller" ]
|
|
|
|
desc "Applies the template supplied by LOCATION=/path/to/template"
|
|
task :template do
|
|
template = ENV["LOCATION"]
|
|
template = File.expand_path(template) if template !~ %r{\A[A-Za-z][A-Za-z0-9+\-\.]*://}
|
|
|
|
require 'rails/generators'
|
|
require 'generators/rails/app/app_generator'
|
|
generator = Rails::Generators::AppGenerator.new [ Rails.root ], {}, :destination_root => Rails.root
|
|
generator.apply template, :verbose => false
|
|
end
|
|
|
|
namespace :update do
|
|
def invoke_from_app_generator(method)
|
|
require 'rails/generators'
|
|
require 'generators/rails/app/app_generator'
|
|
|
|
generator = Rails::Generators::AppGenerator.new ["rails"], { :with_dispatchers => true },
|
|
:destination_root => Rails.root
|
|
generator.invoke(method)
|
|
end
|
|
|
|
desc "Update config/boot.rb from your current rails install"
|
|
task :configs do
|
|
invoke_from_app_generator :create_boot_file
|
|
invoke_from_app_generator :create_config_files
|
|
end
|
|
|
|
desc "Update Prototype javascripts from your current rails install"
|
|
task :javascripts do
|
|
invoke_from_app_generator :create_prototype_files
|
|
end
|
|
|
|
desc "Adds new scripts to the application script/ directory"
|
|
task :scripts do
|
|
invoke_from_app_generator :create_script_files
|
|
end
|
|
|
|
desc "Rename application.rb to application_controller.rb"
|
|
task :application_controller do
|
|
old_style = Rails.root + '/app/controllers/application.rb'
|
|
new_style = Rails.root + '/app/controllers/application_controller.rb'
|
|
if File.exists?(old_style) && !File.exists?(new_style)
|
|
FileUtils.mv(old_style, new_style)
|
|
puts "#{old_style} has been renamed to #{new_style}, update your SCM as necessary"
|
|
end
|
|
end
|
|
end
|
|
end
|