docile/docile.gemspec

31 lines
1.1 KiB
Ruby
Raw Normal View History

2011-12-06 18:51:56 +00: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://ms-ati.github.com/docile/"
2011-12-06 22:58:09 +00: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 18:51:56 +00: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"]
# Running rspec tests from rake
s.add_development_dependency "rake", ">= 0.9.2"
s.add_development_dependency "rspec", ">= 2.11.0"
2011-12-06 22:58:09 +00:00
# Github flavored markdown in YARD documentation
# http://blog.nikosd.com/2011/11/github-flavored-markdown-in-yard.html
2011-12-06 19:31:22 +00:00
s.add_development_dependency "yard"
s.add_development_dependency "redcarpet"
2011-12-06 22:58:09 +00:00
s.add_development_dependency "github-markup"
2011-12-06 18:51:56 +00:00
end