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 project metadata to the gemspec #168

Merged
merged 2 commits into from Dec 13, 2019
Merged
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
9 changes: 8 additions & 1 deletion redis-namespace.gemspec
Expand Up @@ -7,11 +7,18 @@ Gem::Specification.new do |s|
s.version = Redis::Namespace::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "Namespaces Redis commands."
s.homepage = "http://github.com/resque/redis-namespace"
s.homepage = "https://github.com/resque/redis-namespace"
s.email = ["chris@ozmm.org", "hone02@gmail.com", "steve@steveklabnik.com", "me@yaauie.com"]
s.authors = ["Chris Wanstrath", "Terence Lee", "Steve Klabnik", "Ryan Biesemeyer"]
s.license = 'MIT'

s.metadata = {
"bug_tracker_uri" => "https://github.com/resque/redis-namespace/issues",
"changelog_uri" => "https://github.com/resque/redis-namespace/blob/master/CHANGELOG.md",
"documentation_uri" => "https://www.rubydoc.info/gems/redis-namespace/#{s.version}",
"source_code_uri" => "https://github.com/resque/redis-namespace/tree/v#{s.version}",
}

s.files = %w( README.md Rakefile LICENSE )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("test/**/*")
Expand Down