public
Description: Super-simple wrapper for the Yammer API
Homepage:
Clone URL: git://github.com/bscofield/stammer.git
stammer / Rakefile
100644 21 lines (14 sloc) 0.492 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Look in the tasks/setup.rb file for the various options that can be
# configured in this Rakefile. The .rake files in the tasks directory
# are where the options are used.
 
load 'tasks/setup.rb'
 
ensure_in_path 'lib'
require 'stammer'
 
task :default => 'test:run'
 
PROJ.name = 'stammer'
PROJ.authors = 'Ben Scofield of Viget Labs'
PROJ.email = 'ben.scofield@viget.com'
PROJ.url = 'http://www.github.com/bscofield/stammer'
PROJ.rubyforge.name = 'stammer'
 
PROJ.spec.opts << '--color'
 
# EOF