-
Notifications
You must be signed in to change notification settings - Fork 7
/
Rakefile
39 lines (34 loc) · 1.11 KB
/
Rakefile
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
30
31
32
33
34
35
36
37
38
39
# 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.
gem 'darkfish-rdoc'
require 'darkfish-rdoc'
begin
gem 'bones', '~> 2.4.0'
require 'bones'
Bones.setup
rescue LoadError
begin
load 'tasks/setup.rb'
rescue LoadError
raise RuntimeError, '### please install the "bones" gem ###'
end
end
ensure_in_path 'lib'
require 'rhouse'
task :default => 'spec:run'
PROJ.name = 'rhouse'
PROJ.authors = 'Fernand Galiana'
PROJ.email = '[email protected]'
PROJ.url = 'FIXME (project homepage)'
PROJ.version = Rhouse::VERSION
PROJ.spec.opts << '--color'
PROJ.ruby_opts = %w[-W0]
PROJ.rdoc.opts = ["-SHN","-f", "darkfish"]
depend_on( 'activerecord' , '~> 2.2.0' )
depend_on( 'logging' , '>= 0.9.0' )
depend_on( 'rfuzz' , '>= 0.9' )
depend_on( 'sinatra' , '~> 0.9.0' )
depend_on( 'beanstalk-client' , '~> 1.0.0' )
depend_on( 'main' , '~> 2.8.2' )
depend_on( 'id3lib-ruby' , '~> 0.5.0' )