@@ -7,13 +7,14 @@ gem_version = OmniAuth::Identity::Version::VERSION
77OmniAuth ::Identity ::Version . send ( :remove_const , :VERSION )
88
99Gem ::Specification . new do |spec |
10- # See CONTRIBUTING.md
11- spec . cert_chain = [ ENV . fetch ( "GEM_CERT_PATH" , "certs/#{ ENV . fetch ( "GEM_CERT_USER" , ENV [ "USER" ] ) } .pem" ) ]
12- spec . signing_key = File . expand_path ( "~/.ssh/gem-private_key.pem" ) if $PROGRAM_NAME. end_with? ( "gem" )
13-
1410 spec . name = "omniauth-identity"
1511 spec . version = gem_version
1612 spec . authors = [ "Peter Boling" , "Andrew Roberts" , "Michael Bleigh" ]
13+ spec . email = [ "[email protected] " ] 14+
15+ # See CONTRIBUTING.md
16+ spec . cert_chain = [ ENV . fetch ( "GEM_CERT_PATH" , "certs/#{ ENV . fetch ( "GEM_CERT_USER" , ENV [ "USER" ] ) } .pem" ) ]
17+ spec . signing_key = File . expand_path ( "~/.ssh/gem-private_key.pem" ) if $PROGRAM_NAME. end_with? ( "gem" )
1718
1819 spec . summary = spec . description
1920 spec . description = "Traditional username/password based authentication system for OmniAuth"
@@ -22,14 +23,25 @@ Gem::Specification.new do |spec|
2223 spec . license = "MIT"
2324 spec . required_ruby_version = ">= 2.4"
2425
26+ spec . metadata [ "homepage_uri" ] = "https://railsbling.com/tags/#{ spec . name } /"
27+ spec . metadata [ "source_code_uri" ] = "#{ spec . homepage } /tree/v#{ spec . version } "
28+ spec . metadata [ "changelog_uri" ] = "#{ spec . homepage } /blob/v#{ spec . version } /CHANGELOG.md"
29+ spec . metadata [ "bug_tracker_uri" ] = "#{ spec . homepage } /issues"
30+ spec . metadata [ "documentation_uri" ] = "https://www.rubydoc.info/gems/#{ spec . name } /#{ spec . version } "
31+ spec . metadata [ "wiki_uri" ] = "#{ spec . homepage } /wiki"
32+ spec . metadata [ "funding_uri" ] = "https://liberapay.com/pboling"
33+ spec . metadata [ "rubygems_mfa_required" ] = "true"
34+
2535 spec . files = Dir [
2636 # Splats (alphabetical)
2737 "lib/**/*" ,
2838 # Files (alphabetical)
2939 "CHANGELOG.md" ,
3040 "CODE_OF_CONDUCT.md" ,
31- "LICENSE" ,
41+ "CONTRIBUTING.md" ,
42+ "LICENSE.txt" ,
3243 "README.md" ,
44+ "SECURITY.md" ,
3345 ]
3446 spec . bindir = "exe"
3547 spec . require_paths = [ "lib" ]
0 commit comments