Skip to content

Commit

Permalink
Merge pull request #193 from orien/gem-metadata
Browse files Browse the repository at this point in the history
Add project metadata to the gemspec
  • Loading branch information
rwz committed Oct 15, 2019
2 parents 6e02cc7 + 30e55cc commit 4225dc0
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions multi_json.gemspec
Expand Up @@ -7,13 +7,21 @@ Gem::Specification.new do |spec|
spec.summary = "A common interface to multiple JSON libraries."
spec.description = "A common interface to multiple JSON libraries, including Oj, Yajl, the JSON gem (with C-extensions), the pure-Ruby JSON gem, NSJSONSerialization, gson.rb, JrJackson, and OkJson."
spec.files = Dir["*.md", "lib/**/*"]
spec.homepage = "http://github.com/intridea/multi_json"
spec.homepage = "https://github.com/intridea/multi_json"
spec.license = "MIT"
spec.name = "multi_json"
spec.require_path = "lib"
spec.version = MultiJson::Version

spec.metadata = {
'bug_tracker_uri' => 'https://github.com/intridea/multi_json/issues',
'changelog_uri' => "https://github.com/intridea/multi_json/blob/v#{spec.version}/CHANGELOG.md",
'documentation_uri' => "https://www.rubydoc.info/gems/multi_json/#{spec.version}",
'source_code_uri' => "https://github.com/intridea/multi_json/tree/v#{spec.version}",
'wiki_uri' => 'https://github.com/intridea/multi_json/wiki'
}

spec.required_rubygems_version = ">= 1.3.5"
spec.add_development_dependency "rake", "~> 10.5"
spec.add_development_dependency "rspec", "~> 3.9"
end
end

0 comments on commit 4225dc0

Please sign in to comment.