forked from openid/ruby-openid
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathruby-openid2.gemspec
More file actions
166 lines (147 loc) · 8.26 KB
/
Copy pathruby-openid2.gemspec
File metadata and controls
166 lines (147 loc) · 8.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# frozen_string_literal: true
# kettle-jem:freeze
# To retain chunks of comments & code during kettle-jem templating:
# Wrap custom sections with freeze markers (e.g., as above and below this comment chunk).
# kettle-jem will then preserve content between those markers across template runs.
# kettle-jem:unfreeze
gem_version =
if Gem.ruby_version >= Gem::Version.new("3.1")
# Loading Version into an anonymous module allows version.rb to get code coverage from SimpleCov!
# See: https://github.com/simplecov-ruby/simplecov/issues/557#issuecomment-2630782358
# See: https://github.com/panorama-ed/memo_wise/pull/397
Module.new.tap { |mod| Kernel.load("#{__dir__}/lib/ruby/openid2/version.rb", mod) }::OpenID::Version::VERSION
else
require_relative "lib/ruby/openid2/version"
OpenID::Version::VERSION
end
Gem::Specification.new do |spec|
spec.name = "ruby-openid2"
spec.version = gem_version
spec.authors = ["tailor", "Josh Hoyt", "http://j3h.us/", "Kevin Turner", "Carl Howells", "dbloete", "Kouhei Sutou", "Lilli", "Mike Mell", "mcary", "nov matake", "Steven Davidovitz", "Tom Quackenbush", "Cal Heldenbrand", "Dennis Reimann", "grosser", "Akira Matsuda", "Kendall Buchanan", "Kenichi Kamiya", "Marcel M. Cary", "Mike Dillon", "Tobias Haagen Michaelsen", "Zaid Zawaideh", "Ken Dreyer", "ppretorius", "tsukasaoishi", "vivek", "Kazuhiro Serizawa", "Abraham Sangha", "IanAtLooker", "Olle Jonsson", "Utkarsh Gupta", "Vadim Shaulski", "Randy Ebersole", "Peter H. Boling"]
spec.email = ["floss@galtzo.com"]
spec.summary = "💎 A library for consuming and serving OpenID identities."
spec.description = "💎 A library for consuming and serving OpenID identities."
spec.homepage = "https://github.com/ruby-openid/ruby-openid2"
spec.licenses = ["Ruby", "Apache Software License 2.0"]
spec.required_ruby_version = ">= 2.7.0"
# Linux distros often package gems and securely certify them independent
# of the official RubyGem certification process. Allowed via ENV["SKIP_GEM_SIGNING"]
# Ref: https://gitlab.com/ruby-oauth/version_gem/-/issues/3
# Hence, only enable signing if `SKIP_GEM_SIGNING` is not set in ENV.
# See CONTRIBUTING.md
unless ENV.include?("SKIP_GEM_SIGNING")
user_cert = "certs/#{ENV.fetch("GEM_CERT_USER", ENV["USER"])}.pem"
cert_file_path = File.join(__dir__, user_cert)
cert_chain = cert_file_path.split(",")
cert_chain.select! { |fp| File.exist?(fp) }
if cert_file_path && cert_chain.any?
spec.cert_chain = cert_chain
if $PROGRAM_NAME.end_with?("gem") && ARGV[0] == "build"
spec.signing_key = File.join(Gem.user_home, ".ssh", "gem-private_key.pem")
end
end
end
spec.metadata["homepage_uri"] = "https://ruby-openid2.galtzo.com"
spec.metadata["source_code_uri"] = "#{spec.homepage}/tree/v#{spec.version}"
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/v#{spec.version}/CHANGELOG.md"
spec.metadata["bug_tracker_uri"] = "#{spec.homepage}/issues"
spec.metadata["documentation_uri"] = "https://www.rubydoc.info/gems/#{spec.name}/#{spec.version}"
spec.metadata["funding_uri"] = "https://github.com/sponsors/pboling"
spec.metadata["wiki_uri"] = "#{spec.homepage}/wiki"
spec.metadata["news_uri"] = "https://www.railsbling.com/tags/#{spec.name}"
spec.metadata["discord_uri"] = "https://discord.gg/3qme4XHNKN"
spec.metadata["mailing_list_uri"] = "https://www.rubyforum.org/tag/ruby-openid"
spec.metadata["rubygems_mfa_required"] = "true"
gemspec_root = __dir__
relative_package_path = lambda do |path|
path.delete_prefix("#{gemspec_root}/")
end
enumerate_package_glob = lambda do |glob|
Dir.glob(glob, File::FNM_DOTMATCH).filter_map do |path|
next unless File.file?(path) && ![".", ".."].include?(File.basename(path))
relative_package_path.call(path)
end
end
enumerate_package_files = lambda do |root|
enumerate_package_glob.call(File.join(gemspec_root, root, "**", "*"))
end
package_metadata_files = %w[
CHANGELOG.md
LICENSE.md
README.md
sig/ruby/openid2.rbs
].select { |path| File.exist?(File.join(gemspec_root, path)) }
# Specify which files are part of the released package.
spec.files = [
# Root package metadata
*package_metadata_files,
# Code / tasks / data (NOTE: exe/ is specified via spec.bindir and spec.executables below)
*enumerate_package_files.call("lib"),
# Executables and executable support scripts
*enumerate_package_files.call("exe"),
"Ruby.md",
"Apache Software License 2.0.md"
]
spec.rdoc_options += [
"--title",
"#{spec.name} - #{spec.summary}",
"--main",
"README.md",
"--exclude",
"^sig/",
"--line-numbers",
"--inline-source",
"--quiet"
]
spec.bindir = "exe"
# Listed files are the relative paths from bindir above.
spec.executables = spec.files.grep(%r{^bin/}).map { |f| File.basename(f) }
spec.require_paths = ["lib"]
# Utilities
spec.add_dependency("version_gem", "~> 1.1", ">= 1.1.14") # ruby >= 2.2.0
# NOTE: It is preferable to list development dependencies in the gemspec due to increased
# visibility and discoverability.
# However, development dependencies in gemspec will install on
# all versions of Ruby that will run in CI.
# This gem, and its gemspec runtime dependencies, will install on Ruby down to 2.7.0.
# This gem, and its gemspec development dependencies, will install on Ruby down to 2.7.0.
# Thus, dev dependencies in gemspec must have
#
# required_ruby_version ">= 2.7.0" (or lower)
#
# Development dependencies that require strictly newer Ruby versions should be in a "gemfile",
# and preferably a modular one (see gemfiles/modular/*.gemfile).
# Dev, Test, & Release Tasks
spec.add_development_dependency("kettle-dev", "~> 2.5", ">= 2.5.14") # ruby >= 2.7.0
# Security
spec.add_development_dependency("bundler-audit", "~> 0.9.3") # ruby >= 2.0.0
# Tasks
spec.add_development_dependency("rake", "~> 13.0") # ruby >= 2.2.0
# Debugging
spec.add_development_dependency("require_bench", "~> 1.0", ">= 1.0.4") # ruby >= 2.2.0
# Testing
# Loads version files in anonymous namespaces for coverage without constant redefinition warnings.
spec.add_development_dependency("anonymous_loader", "~> 0.1", ">= 0.1.3") # ruby >= 2.2.0
spec.add_development_dependency("appraisal2", "~> 3.2", ">= 3.2.0") # ruby >= 1.8.7, for testing against multiple versions of dependencies
spec.add_development_dependency("kettle-test", "~> 2.0", ">= 2.0.17") # ruby >= 2.7.0
spec.add_development_dependency("turbo_tests2", "~> 3.2", ">= 3.2.4") # ruby >= 2.4.0, default kettle-test runner
# Releasing
spec.add_development_dependency("ruby-progressbar", "~> 1.13") # ruby >= 0
spec.add_development_dependency("stone_checksums", "~> 1.0", ">= 1.0.8") # ruby >= 2.2.0
# Development tasks
# The cake is a lie. erb v2.2, the oldest release, was never compatible with Ruby 2.3.
# This means we have no choice but to use the erb that shipped with Ruby 2.3
# /opt/hostedtoolcache/Ruby/2.3.8/x64/lib/ruby/gems/2.3.0/gems/erb-2.2.2/lib/erb.rb:670:in `prepare_trim_mode': undefined method `match?' for "-":String (NoMethodError)
# spec.add_development_dependency("erb", ">= 2.2") # ruby >= 2.3.0, not SemVer, old rubies get dropped in a patch.
spec.add_development_dependency("gitmoji-regex", "~> 2.0", ">= 2.0.11") # ruby >= 2.4
# HTTP recording for deterministic specs
# In Ruby 3.5 (HEAD) the CGI library has been pared down, so we also need to depend on gem "cgi" for ruby@head
# This is done in the "head" appraisal.
# See: https://github.com/vcr/vcr/issues/1057
# spec.add_development_dependency("vcr", ">= 4") # 6.0 claims to support ruby >= 2.3, but fails on ruby 2.4
# spec.add_development_dependency("webmock", ">= 3") # Last version to support ruby >= 2.3
spec.add_development_dependency("minitest", ">= 5", "< 6") # Use assert_nil if expecting nil
spec.add_development_dependency("webrick", "~> 1.8")
spec.add_development_dependency("yard", "~> 0.9", ">= 0.9.37")
spec.add_development_dependency("yard-junk", "~> 0.0", ">= 0.0.10")
end