public
Description: Easy configuration setup and loading for Ruby modules
Homepage: http://github.com/aniero/configurable
Clone URL: git://github.com/aniero/configurable.git
configurable / Rakefile
100644 26 lines (20 sloc) 0.615 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.
 
begin
  require 'bones'
  Bones.setup
rescue LoadError
  load 'tasks/setup.rb'
end
 
ensure_in_path 'lib'
require 'configurable'
 
task :default => 'spec:run'
 
PROJ.name = 'configurable'
PROJ.authors = 'Nathan Witmer'
PROJ.email = 'nwitmer@gmail.com'
PROJ.url = 'http://github.com/aniero/configurable'
PROJ.version = Configurable::VERSION
PROJ.rubyforge.name = 'configurable'
 
PROJ.spec.opts << '--color --format specdoc'
PROJ.ruby_opts = []