public
Description: Simple node and visitor definitions for Treetop grammars
Homepage: http://github.com/aniero/treehouse
Clone URL: git://github.com/aniero/tire_swing.git
aniero (author)
Fri Dec 05 18:03:15 -0800 2008
commit  4a72d7893ea9d631aba75a97a80d8e87d9896eb4
tree    5f5e2cba1ca51a1c6580633fd9f2772cbd6c3d03
parent  9debea61f0275d6fc7c6f90f01e7737bfb538a96
tire_swing / Rakefile
100644 26 lines (18 sloc) 0.601 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
# 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 'tire_swing'
 
task :default => 'spec:run'
 
PROJ.name = 'tire_swing'
PROJ.authors = 'Nathan Witmer'
PROJ.email = 'nwitmer at gmail dot com'
PROJ.url = 'http://github.com/aniero/tire_swing'
PROJ.rubyforge.name = ''
PROJ.version = TireSwing.version
 
PROJ.spec.opts << '--color --format specdoc'
 
# EOF
 
depend_on "treetop"
depend_on "attributes"
depend_on "extlib", "~> 0.9.8"