summaryrefslogtreecommitdiff
path: root/hashie.gemspec
blob: e7c061eafb2d5bc2f2e3a037f98f81ea77d5b8f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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         = ['michael@intridea.com', 'jollyjerry@gmail.com']
  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/hashie/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']

  if gem.respond_to?(:metadata)
    gem.metadata = {
      'bug_tracker_uri'   => 'https://github.com/hashie/hashie/issues',
      'changelog_uri'     => 'https://github.com/hashie/hashie/blob/master/CHANGELOG.md',
      'documentation_uri' => 'https://www.rubydoc.info/gems/hashie',
      'source_code_uri'   => 'https://github.com/hashie/hashie'
    }
  end

  gem.required_ruby_version = '>= 2.4'

  gem.add_development_dependency 'bundler'
end