public
Description: Timeago is a jQuery plugin that makes it easy to support automatically updating fuzzy timestamps (e.g. "4 minutes ago").
Homepage: http://timeago.yarp.com
Clone URL: git://github.com/rmm5t/jquery-timeago.git
Click here to lend your support to: jquery-timeago and make a donation at www.pledgie.com !
commit  799a6874f98d9cf5e64b390b679fef54cd49c046
tree    a67149869a3013c2f33b951d2fc82eb18dea04b1
parent  b23519102fa1e0c42f456745d486b0a9f6ca882a
jquery-timeago / Rakefile
100644 17 lines (13 sloc) 0.296 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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/index.html")
end