aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/tasks/dev.rake
blob: ff2de264ce368bdde8b549363e4a50ec9493805a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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