Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add metadata to gemspec file #172

Merged
merged 1 commit into from Jan 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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