1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.name = 'inflecto'
gem.version = '0.0.2'
gem.authors = ['The rails, merb & datamapper team', 'Markus Schirp']
gem.email = ['mbj@seonic.net']
gem.description = 'Inflector for strings'
gem.summary = gem.description
gem.homepage = 'https://github.com/mbj/inflecto'
gem.require_paths = %w[lib]
gem.files = `git ls-files`.split($/)
gem.test_files = `git ls-files spec/{unit,integration}`.split($/)
gem.extra_rdoc_files = %w[LICENSE README.md TODO]
end
|