public
Description: A ruby gem that makes using the http://outside.in/ API simple.
Homepage: http://github.com/vigetlabs/radarb
Clone URL: git://github.com/vigetlabs/radarb.git
radarb / Rakefile
100644 27 lines (21 sloc) 0.607 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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.
 
begin
  require 'bones'
  Bones.setup
rescue LoadError
  load 'tasks/setup.rb'
end
 
ensure_in_path 'lib'
require 'radarb'
 
task :default => 'test'
 
PROJ.name = 'radarb'
PROJ.authors = 'Justin Marney'
PROJ.email = 'justin.marney@viget.com'
PROJ.url = 'http://github.com/vigetlabs/radarb'
PROJ.version = Radarb::VERSION
PROJ.rubyforge.name = 'radarb'
PROJ.test.files = FileList['test/**/*_test.rb']
PROJ.spec.opts << '--color'
 
# EOF