-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtoxiproxy.gemspec
28 lines (23 loc) · 1.08 KB
/
toxiproxy.gemspec
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
# frozen_string_literal: true
require_relative "lib/toxiproxy/version"
Gem::Specification.new do |spec|
spec.name = "toxiproxy"
spec.version = Toxiproxy::VERSION
spec.authors = ["Simon Eskildsen", "Jacob Wirth"]
spec.email = "[email protected]"
spec.summary = "Ruby library for Toxiproxy"
spec.description = "A Ruby library for controlling Toxiproxy. Can be used in resiliency testing."
spec.homepage = "https://github.com/Shopify/toxiproxy"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.metadata = {
"homepage_uri" => "https://github.com/Shopify/toxiproxy",
"source_code_uri" => "https://github.com/Shopify/toxiproxy-ruby",
"changelog_uri" => "https://github.com/Shopify/toxiproxy-ruby/blob/main/CHANGELOG.md",
"documentation_uri" => "https://github.com/Shopify/toxiproxy-ruby",
"allowed_push_host" => "https://rubygems.org",
}
spec.files = Dir.glob("{lib,data}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
spec.files += ["LICENSE", "README.md"]
spec.require_paths = ["lib"]
end