mirror of
https://github.com/ms-ati/docile
synced 2023-03-27 23:21:52 -04:00
33 lines
1.2 KiB
Ruby
33 lines
1.2 KiB
Ruby
$:.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 = %w(msiegel@usainnov.com)
|
|
s.homepage = 'http://ms-ati.github.com/docile/'
|
|
s.summary = 'Docile keeps your Ruby DSLs tame and well-behaved'
|
|
s.description = 'Docile turns any Ruby object into a DSL. Especially useful with the Builder pattern.'
|
|
s.license = 'MIT'
|
|
|
|
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 = %w(lib)
|
|
|
|
# Running rspec tests from rake
|
|
s.add_development_dependency 'rake', '~> 0.9.2'
|
|
s.add_development_dependency 'rspec', '~> 2.11.0'
|
|
|
|
# Github flavored markdown in YARD documentation
|
|
# http://blog.nikosd.com/2011/11/github-flavored-markdown-in-yard.html
|
|
s.add_development_dependency 'yard'
|
|
s.add_development_dependency 'redcarpet'
|
|
s.add_development_dependency 'github-markup'
|
|
|
|
# Coveralls test coverage tool
|
|
s.add_development_dependency 'coveralls'
|
|
end
|