mirror of
https://github.com/scratchfoundation/jquery-timeago.git
synced 2024-11-23 07:47:54 -05:00
17 lines
355 B
Ruby
17 lines
355 B
Ruby
require "bundler/setup"
|
|
|
|
task :default => :test
|
|
|
|
desc "Publish \"marketing\" docs"
|
|
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")
|
|
end
|
|
|
|
desc "Open your default browser with the test page"
|
|
task :test do
|
|
sh("open test/index.html")
|
|
end
|