This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
jquery-timeago/Rakefile
2009-07-17 13:43:44 -04:00

16 lines
290 B
Ruby

verbose(true)
task :default => :test
desc 'Publish "marketing" docs'
task :publish do
sh("git rebase master gh-pages")
sh("git checkout master")
sh("git push")
sh("git push --tags")
end
desc 'Open your default browser with the test page'
task :test do
sh("open test.html")
end