forgot that 4 of them were git repos :skull

This commit is contained in:
neon443
2024-09-28 10:26:25 +01:00
parent 689c1e3167
commit 2a8ef5aec9
149 changed files with 45223 additions and 0 deletions

11
games/2048/Rakefile Normal file
View File

@@ -0,0 +1,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