-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnice_http.gemspec
More file actions
20 lines (20 loc) · 1.21 KB
/
nice_http.gemspec
File metadata and controls
20 lines (20 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |s|
s.name = "nice_http"
s.version = "1.10.1"
s.summary = "NiceHttp -- simplest library for accessing and testing HTTP and REST resources. Get http logs and statistics automatically. Use hashes on your requests. Access JSON even easier."
s.description = "NiceHttp -- simplest library for accessing and testing HTTP and REST resources. Get http logs and statistics automatically. Use hashes on your requests. Access JSON even easier."
s.authors = ["Mario Ruiz"]
s.email = "marioruizs@gmail.com"
s.files = Dir["lib/nice_http/methods/*.rb"] + Dir["lib/nice_http/manage/*.rb"] +
Dir["lib/nice_http/utils/*.rb"] + Dir["lib/nice_http/*.rb"] +
["lib/nice_http.rb", "LICENSE", "README.md", ".yardopts"]
s.extra_rdoc_files = ["LICENSE", "README.md"]
s.homepage = "https://github.com/MarioRuiz/nice_http"
s.license = "MIT"
s.add_runtime_dependency "nice_hash", "~> 1.19", ">= 1.19.0"
s.add_development_dependency "rspec", "~> 3.8", ">= 3.8.0"
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.required_ruby_version = [">= 2.7"]
s.post_install_message = "Thanks for installing! Visit us on https://github.com/MarioRuiz/nice_http"
end