-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall_the_https.gemspec
More file actions
32 lines (25 loc) · 1.32 KB
/
all_the_https.gemspec
File metadata and controls
32 lines (25 loc) · 1.32 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
# frozen_string_literal: true
require_relative "lib/all_the_https/version"
Gem::Specification.new do |spec|
spec.name = "all_the_https"
spec.version = AllTheHTTPs::VERSION
spec.authors = ["The HTTP Maximalist Society"]
spec.email = ["every-http-client@example.com"]
spec.summary = "Why pick one HTTP client when you can use ALL of them?"
spec.description = "Every long-lived Ruby app eventually accumulates every HTTP client library. " \
"This gem embraces that destiny. Each request randomly selects from whichever " \
"HTTP clients you have installed. Maximum chaos. Maximum comedy."
spec.homepage = "https://github.com/zhubert/all-the-https"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.files = Dir.glob("lib/**/*") + %w[LICENSE.txt README.md]
spec.require_paths = ["lib"]
# No runtime dependencies — the whole point is that YOUR app already has them all.
# We just use whatever HTTP gems happen to be lying around.
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "webmock", "~> 3.0"
end