Skip to content

Commit

Permalink
Merge pull request #172 from ShockwaveNN/feature/gem-metadata
Browse files Browse the repository at this point in the history
Add metadata to gemspec file
  • Loading branch information
pboling committed Jan 25, 2021
2 parents 59be6bc + 5b72aec commit 4f3e717
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions HISTORY
@@ -1,5 +1,7 @@
=== CURRENT

* Add metadata to Gemspec file

=== 0.5.5 2020-01-19

* Allow redirect to different host but same path
Expand Down
8 changes: 8 additions & 0 deletions oauth.gemspec
Expand Up @@ -15,6 +15,14 @@ Gem::Specification.new do |spec|
spec.summary = "OAuth Core Ruby implementation"

spec.executables = ["oauth"]
spec.homepage = "https://github.com/oauth-xx/oauth-ruby"
spec.metadata = {
'bug_tracker_uri' => "#{spec.homepage}/issues",
'changelog_uri' => "#{spec.homepage}/blob/master/HISTORY",
'documentation_uri' => "https://rdoc.info/github/oauth-xx/oauth-ruby/master/frames",
'homepage_uri' => spec.homepage,
'source_code_uri' => spec.homepage
}
spec.files = Dir.glob("lib/**/*.rb")
#spec.test_files = Dir.glob("test/**/*.rb") + Dir.glob('test/keys/*')
spec.extra_rdoc_files = [ "LICENSE", "README.rdoc", "TODO" ]
Expand Down

0 comments on commit 4f3e717

Please sign in to comment.