-
Notifications
You must be signed in to change notification settings - Fork 1
/
httprb_rspec.gemspec
37 lines (28 loc) · 1.19 KB
/
httprb_rspec.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
29
30
31
32
33
34
35
36
37
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "http_rspec/version"
Gem::Specification.new do |gem|
gem.authors = ["Simon Toivo Telhaug"]
gem.email = ["bascule@gmail.com"]
gem.description = <<-DESCRIPTION.strip.gsub(/\s+/, " ")
Include helpfull matchers for mathing statuscodes
DESCRIPTION
gem.summary = "HTTP Rspec matchers"
gem.homepage = "https://github.com/httprb/http-rspec"
gem.licenses = ["MIT"]
gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.name = "http-rspec"
gem.require_paths = ["lib"]
gem.version = HttpRspec::VERSION
gem.required_ruby_version = ">= 3.0"
gem.add_runtime_dependency "http", ">= 4.0"
gem.metadata = {
"source_code_uri" => "https://github.com/httprb/http-rspec",
"bug_tracker_uri" => "https://github.com/httprb/http-rspec/issues",
"changelog_uri" => "https://github.com/httprb/http-rspec/blob/v#{HttpRspec::VERSION}/CHANGES.md",
"rubygems_mfa_required" => "true"
}
gem.license = "MIT"
end