bscofield / athena

A micro-framework for exploring RESTful applications

This URL has Read+Write access

athena / Rakefile
100644 21 lines (14 sloc) 0.456 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 'athena'
 
task :default => 'spec:run'
 
PROJ.name = 'athena'
PROJ.authors = 'Ben Scofield'
PROJ.email = 'athena@turrean.com'
PROJ.url = 'FIXME (project homepage)'
PROJ.rubyforge.name = 'athena'
 
PROJ.spec.opts << '--color'
 
# EOF