From 12b57d3f4cc2855978f11e1b18c1c7123dc48264 Mon Sep 17 00:00:00 2001 From: Ryan McGeary Date: Fri, 17 Jul 2009 13:42:41 -0400 Subject: [PATCH] Added GitHub Pages support --- CNAME | 1 + Rakefile | 7 ------- 2 files changed, 1 insertion(+), 7 deletions(-) create mode 100644 CNAME diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..0e83d43 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +timeago.yarp.com diff --git a/Rakefile b/Rakefile index 9c6e48e..92f2cfd 100644 --- a/Rakefile +++ b/Rakefile @@ -1,8 +1,3 @@ -SETTINGS = { - :rsync_server => 'timeago.yarp.com:/var/www/timeago/', - :rsync_options => '-e ssh -avz --delete --exclude=.git' -} - verbose(true) task :default => :test @@ -13,8 +8,6 @@ task :publish do sh("git checkout master") sh("git push") sh("git push --tags") - - sh("rsync #{SETTINGS[:rsync_options]} ./ #{SETTINGS[:rsync_server]}") end desc 'Open your default browser with the test page'