jquery-timeago/Rakefile

18 lines
343 B
Text
Raw Normal View History

verbose(true)
2008-07-18 20:37:24 -04:00
task :default => :test
desc 'Publish "marketing" docs'
2008-07-18 11:34:06 -04:00
task :publish do
sh("git rebase master gh-pages")
sh("git checkout master")
sh("git push origin master")
sh("git push origin gh-pages")
sh("git push --tags")
2008-07-18 11:34:06 -04:00
end
2008-07-18 20:37:24 -04:00
desc 'Open your default browser with the test page'
task :test do
sh("open test/index.html")
2008-07-18 20:37:24 -04:00
end