-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
33 lines (27 loc) · 852 Bytes
/
Rakefile
File metadata and controls
33 lines (27 loc) · 852 Bytes
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
# 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 'rubygems'
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 'xmlrpc_annotations'
task :default => 'test'
PROJ.name = 'xmlrpc_annotations'
PROJ.authors = 'Alex Young'
PROJ.email = 'alex@blackkettle.org'
PROJ.url = 'http://github.com/regularfry/xmlrpc_annotations'
PROJ.version = XmlrpcAnnotations::VERSION
PROJ.rubyforge.name = 'xmlrpc_annotations'
PROJ.gem.dependencies << ['activesupport', '>= 2.2.2']
PROJ.gem.development_dependencies << ['minitest', '>= 1.3.0']
PROJ.spec.opts << '--color'
# EOF