File: Rakefile

package info (click to toggle)
libjs-jquery-timeago 1.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 380 kB
  • ctags: 826
  • sloc: makefile: 7
file content (17 lines) | stat: -rw-r--r-- 355 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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