mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
69ab3eb57e
The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
43 lines
900 B
Ruby
43 lines
900 B
Ruby
require "fileutils"
|
|
|
|
module Rails
|
|
module DevCaching # :nodoc:
|
|
class << self
|
|
FILE = "tmp/caching-dev.txt"
|
|
|
|
def enable_by_file
|
|
FileUtils.mkdir_p("tmp")
|
|
|
|
if File.exist?(FILE)
|
|
delete_cache_file
|
|
puts "Development mode is no longer being cached."
|
|
else
|
|
create_cache_file
|
|
puts "Development mode is now being cached."
|
|
end
|
|
|
|
FileUtils.touch "tmp/restart.txt"
|
|
FileUtils.rm_f("tmp/pids/server.pid")
|
|
end
|
|
|
|
def enable_by_argument(caching)
|
|
FileUtils.mkdir_p("tmp")
|
|
|
|
if caching
|
|
create_cache_file
|
|
elsif caching == false && File.exist?(FILE)
|
|
delete_cache_file
|
|
end
|
|
end
|
|
|
|
private
|
|
def create_cache_file
|
|
FileUtils.touch FILE
|
|
end
|
|
|
|
def delete_cache_file
|
|
File.delete FILE
|
|
end
|
|
end
|
|
end
|
|
end
|