mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
16 lines
412 B
Ruby
16 lines
412 B
Ruby
namespace :dev do
|
|
desc 'Toggle development mode caching on/off'
|
|
task :cache do
|
|
FileUtils.mkdir_p('tmp')
|
|
|
|
if File.exist? 'tmp/caching-dev.txt'
|
|
File.delete 'tmp/caching-dev.txt'
|
|
puts 'Development mode is no longer being cached.'
|
|
else
|
|
FileUtils.touch 'tmp/caching-dev.txt'
|
|
puts 'Development mode is now being cached.'
|
|
end
|
|
|
|
FileUtils.touch 'tmp/restart.txt'
|
|
end
|
|
end
|