xaviershay / nom

command line access to ausnom.com

This URL has Read+Write access

Xavier Shay (author)
Sat Jan 24 20:57:07 -0800 2009
commit  d68d6b99c64b7406e704b51df1c9a549b3ffe376
tree    a40481ed187caf43d7e48bfc604dfd88d9a71e3e
parent  4ac474e5fdc4656b16bad8fc01ca632cc11f59ed
nom / Rakefile
100644 29 lines (21 sloc) 0.55 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
28
29
# 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'
depend_on 'json_pure'
 
require 'nom'
 
task :default => 'spec:run'
 
PROJ.name = 'nom'
PROJ.authors = 'Xavier Shay'
PROJ.email = 'contact@rhnh.net'
PROJ.url = 'http://ausnom.com'
PROJ.version = Nom::VERSION
#PROJ.rubyforge.name = 'nom'
 
PROJ.spec.opts << '--color'
 
# EOF