forked from hashie/hashie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hashie.gemspec
23 lines (20 loc) · 980 Bytes
/
hashie.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require File.expand_path('../lib/hashie/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'hashie'
gem.version = Hashie::VERSION
gem.authors = ['Michael Bleigh', 'Jerry Cheung']
gem.email = ['[email protected]', '[email protected]']
gem.description = 'Hashie is a collection of classes and mixins that make hashes more powerful.'
gem.summary = 'Your friendly neighborhood hash library.'
gem.homepage = 'https://github.com/intridea/hashie'
gem.license = 'MIT'
gem.require_paths = ['lib']
gem.files = %w[.yardopts CHANGELOG.md CONTRIBUTING.md LICENSE README.md UPGRADING.md]
gem.files += %w[Rakefile hashie.gemspec]
gem.files += Dir['lib/**/*.rb']
gem.files += Dir['spec/**/*.rb']
gem.test_files = Dir['spec/**/*.rb']
gem.add_development_dependency 'rake', '< 11'
gem.add_development_dependency 'rspec', '~> 3.0'
gem.add_development_dependency 'rspec-pending_for', '~> 0.1'
end