summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-02-21 21:21:14 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-02-21 21:21:14 +0900
commit9cb1ffaa5c3a4b6921eaf748ffdef5dbd1c07877 (patch)
treeffca3f9ceb7b0a56fd546a7b62780f98011a8265 /lib
parenta294ec162235cb9a0ed62ede0bbf9d2f11b30592 (diff)
Promote net-http to the default gems.
test/net/http/test_https.rb: rename fixture methods to read_fixture because it conflicts with test-unit gem.
Diffstat (limited to 'lib')
-rw-r--r--lib/net/http.rb2
-rw-r--r--lib/net/http/net-http.gemspec29
-rw-r--r--lib/net/http/version.rb5
3 files changed, 35 insertions, 1 deletions
diff --git a/lib/net/http.rb b/lib/net/http.rb
index de9963d18c..a1d1d3e9c5 100644
--- a/lib/net/http.rb
+++ b/lib/net/http.rb
@@ -20,7 +20,7 @@
# See Net::HTTP for an overview and examples.
#
-require_relative 'protocol'
+require 'net/protocol'
require 'uri'
autoload :OpenSSL, 'openssl'
diff --git a/lib/net/http/net-http.gemspec b/lib/net/http/net-http.gemspec
new file mode 100644
index 0000000000..15887130b4
--- /dev/null
+++ b/lib/net/http/net-http.gemspec
@@ -0,0 +1,29 @@
+begin
+ require_relative "lib/net/http/version"
+rescue LoadError # Fallback to load version file in ruby core repository
+ require_relative "version"
+end
+
+Gem::Specification.new do |spec|
+ spec.name = "net-http"
+ spec.version = Net::Http::VERSION
+ spec.authors = ["NARUSE, Yui"]
+ spec.email = ["naruse@airemix.jp"]
+
+ spec.summary = %q{HTTP client api for Ruby.}
+ spec.description = %q{HTTP client api for Ruby.}
+ spec.homepage = "https://github.com/ruby/net-http"
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
+
+ spec.metadata["homepage_uri"] = spec.homepage
+ spec.metadata["source_code_uri"] = spec.homepage
+
+ # Specify which files should be added to the gem when it is released.
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
+ end
+ spec.bindir = "exe"
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
+ spec.require_paths = ["lib"]
+end
diff --git a/lib/net/http/version.rb b/lib/net/http/version.rb
new file mode 100644
index 0000000000..832d597111
--- /dev/null
+++ b/lib/net/http/version.rb
@@ -0,0 +1,5 @@
+module Net
+ module Http
+ VERSION = "0.1.0"
+ end
+end