2011-12-06 13:51:56 -05:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
$:.push File.expand_path("../lib", __FILE__)
|
|
|
|
require "docile/version"
|
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = "docile"
|
|
|
|
s.version = Docile::VERSION
|
|
|
|
s.authors = ["Marc Siegel"]
|
|
|
|
s.email = ["msiegel@usainnov.com"]
|
|
|
|
s.homepage = "http://docile.github.com"
|
2011-12-06 17:58:09 -05:00
|
|
|
s.summary = "Docile keeps your Ruby DSL's tame and well-behaved"
|
|
|
|
s.description = "Docile turns any Ruby object into a DSL. Especially useful with the Builder pattern."
|
2011-12-06 13:51:56 -05:00
|
|
|
|
|
|
|
s.rubyforge_project = "docile"
|
|
|
|
|
|
|
|
s.files = `git ls-files`.split("\n")
|
|
|
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
|
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
|
|
s.require_paths = ["lib"]
|
|
|
|
|
2011-12-06 14:31:22 -05:00
|
|
|
s.add_development_dependency "rspec", "~> 2.7.0"
|
2011-12-06 17:58:09 -05:00
|
|
|
|
|
|
|
# Github flavored markdown in YARD documentation
|
|
|
|
# http://blog.nikosd.com/2011/11/github-flavored-markdown-in-yard.html
|
2011-12-06 14:31:22 -05:00
|
|
|
s.add_development_dependency "yard"
|
|
|
|
s.add_development_dependency "redcarpet"
|
2011-12-06 17:58:09 -05:00
|
|
|
s.add_development_dependency "github-markup"
|
2011-12-06 13:51:56 -05:00
|
|
|
end
|