public
Description: A super cool, simple, and feature rich configuration system for Ruby apps. (replaces application_configuration)
Homepage: http://www.mackframework.com
Clone URL: git://github.com/markbates/configatron.git
Click here to lend your support to: configatron and make a donation at www.pledgie.com !
commit  b1eeede854d614ba5f7ec74159dd0c622e0594bb
tree    00ca596682e42d011606cfcd0d6ef369be67ebe4
parent  d8475cd8f3dceb654fbbb7c826b3bb4b655b9001
configatron / Rakefile
100644 18 lines (15 sloc) 0.469 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'rubygems'
require 'gemstub'
 
Gemstub.test_framework = :rspec
 
Gemstub.gem_spec do |s|
  s.version = "2.5.1"
  s.summary = "A powerful Ruby configuration system."
  s.rubyforge_project = "magrathea"
  s.add_dependency('yamler', '>=0.1.0')
  s.email = 'mark@markbates.com'
  s.homepage = 'http://www.metabates.com'
  s.files = FileList['lib/**/*.*', 'README', 'LICENSE', 'bin/**/*.*', 'generators/**/*.*']
end
 
Gemstub.rdoc do |rd|
  rd.title = "Configatron"
end