Rakefile 300 字节
Newer Older
C
crayonxin2000 已提交
1 2 3 4 5 6 7 8 9 10 11
require "date"

namespace :appcache do
  desc "update the date in the appcache file (in the gh-pages branch)"
  task :update do
    appcache = File.read("cache.appcache")
    updated  = "# Updated: #{DateTime.now}"

    File.write("cache.appcache", appcache.sub(/^# Updated:.*$/, updated))
  end
end