2020-09-11 14:38:18 +03:00
|
|
|
Gem::Specification.new do |spec|
|
|
|
|
spec.name = "open-uri"
|
2022-12-05 10:13:46 +03:00
|
|
|
spec.version = "0.3.0"
|
2020-09-11 14:38:18 +03:00
|
|
|
spec.authors = ["Tanaka Akira"]
|
|
|
|
spec.email = ["akr@fsij.org"]
|
|
|
|
|
|
|
|
spec.summary = %q{An easy-to-use wrapper for Net::HTTP, Net::HTTPS and Net::FTP.}
|
|
|
|
spec.description = %q{An easy-to-use wrapper for Net::HTTP, Net::HTTPS and Net::FTP.}
|
|
|
|
spec.homepage = "https://github.com/ruby/open-uri"
|
|
|
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
|
|
|
spec.licenses = ["Ruby", "BSD-2-Clause"]
|
|
|
|
|
|
|
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
|
|
spec.metadata["source_code_uri"] = spec.homepage
|
|
|
|
|
|
|
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
2022-10-11 03:32:35 +03:00
|
|
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A((bin|test|spec|features)/|\.git|[Rr]ake|Gemfile)|\.gemspec\z}) }
|
2020-09-11 14:38:18 +03:00
|
|
|
end
|
2021-07-30 09:49:01 +03:00
|
|
|
spec.executables = []
|
2020-09-11 14:38:18 +03:00
|
|
|
spec.require_paths = ["lib"]
|
2020-12-01 13:14:36 +03:00
|
|
|
|
|
|
|
spec.add_dependency "uri"
|
|
|
|
spec.add_dependency "stringio"
|
|
|
|
spec.add_dependency "time"
|
2020-09-11 14:38:18 +03:00
|
|
|
end
|