[前][次][番号順一覧][スレッド一覧]

ruby-changes:60143

From: Hiroshi <ko1@a...>
Date: Fri, 21 Feb 2020 21:42:46 +0900 (JST)
Subject: [ruby-changes:60143] 9cb1ffaa5c (master): Promote net-http to the default gems.

https://git.ruby-lang.org/ruby.git/commit/?id=9cb1ffaa5c

From 9cb1ffaa5c3a4b6921eaf748ffdef5dbd1c07877 Mon Sep 17 00:00:00 2001
From: Hiroshi SHIBATA <hsbt@r...>
Date: Fri, 21 Feb 2020 21:21:14 +0900
Subject: 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.

diff --git a/lib/net/http.rb b/lib/net/http.rb
index de9963d..a1d1d3e 100644
--- a/lib/net/http.rb
+++ b/lib/net/http.rb
@@ -20,7 +20,7 @@ https://github.com/ruby/ruby/blob/trunk/lib/net/http.rb#L20
 # 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 0000000..1588713
--- /dev/null
+++ b/lib/net/http/net-http.gemspec
@@ -0,0 +1,29 @@ https://github.com/ruby/ruby/blob/trunk/lib/net/http/net-http.gemspec#L1
+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@a..."]
+
+  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 0000000..832d597
--- /dev/null
+++ b/lib/net/http/version.rb
@@ -0,0 +1,5 @@ https://github.com/ruby/ruby/blob/trunk/lib/net/http/version.rb#L1
+module Net
+  module Http
+    VERSION = "0.1.0"
+  end
+end
diff --git a/test/net/http/test_https.rb b/test/net/http/test_https.rb
index 204bfb7..64101b6 100644
--- a/test/net/http/test_https.rb
+++ b/test/net/http/test_https.rb
@@ -12,14 +12,14 @@ end https://github.com/ruby/ruby/blob/trunk/test/net/http/test_https.rb#L12
 class TestNetHTTPS < Test::Unit::TestCase
   include TestNetHTTPUtils
 
-  def self.fixture(key)
+  def self.read_fixture(key)
     File.read(File.expand_path("../fixtures/#{key}", __dir__))
   end
 
-  CA_CERT = OpenSSL::X509::Certificate.new(fixture("cacert.pem"))
-  SERVER_KEY = OpenSSL::PKey.read(fixture("server.key"))
-  SERVER_CERT = OpenSSL::X509::Certificate.new(fixture("server.crt"))
-  DHPARAMS = OpenSSL::PKey::DH.new(fixture("dhparams.pem"))
+  CA_CERT = OpenSSL::X509::Certificate.new(read_fixture("cacert.pem"))
+  SERVER_KEY = OpenSSL::PKey.read(read_fixture("server.key"))
+  SERVER_CERT = OpenSSL::X509::Certificate.new(read_fixture("server.crt"))
+  DHPARAMS = OpenSSL::PKey::DH.new(read_fixture("dhparams.pem"))
   TEST_STORE = OpenSSL::X509::Store.new.tap {|s| s.add_cert(CA_CERT) }
 
   CONFIG = {
diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb
index 6d374a1..1794e01 100644
--- a/tool/sync_default_gems.rb
+++ b/tool/sync_default_gems.rb
@@ -62,6 +62,7 @@ https://github.com/ruby/ruby/blob/trunk/tool/sync_default_gems.rb#L62
 # * https://github.com/ruby/net-protocol
 # * https://github.com/ruby/net-imap
 # * https://github.com/ruby/net-ftp
+# * https://github.com/ruby/net-http
 #
 
 require 'fileutils'
@@ -122,6 +123,7 @@ $repositories = { https://github.com/ruby/ruby/blob/trunk/tool/sync_default_gems.rb#L123
   "net-protocol": "ruby/net-protocol",
   "net-imap": "ruby/net-imap",
   "net-ftp": "ruby/net-ftp",
+  "net-http": "ruby/net-http",
 }
 
 def sync_default_gems(gem)
@@ -289,6 +291,12 @@ def sync_default_gems(gem) https://github.com/ruby/ruby/blob/trunk/tool/sync_default_gems.rb#L291
   when "net-ftp"
     sync_lib "net-ftp"
     mv "lib/net-ftp.gemspec", "lib/net/ftp"
+  when "net-http"
+    rm_rf(%w[lib/net/http.rb lib/net/http test/net/http])
+    cp_r("#{upstream}/lib/net/http.rb", "lib/net")
+    cp_r("#{upstream}/lib/net/http", "lib/net")
+    cp_r("#{upstream}/test/net/http", "test/net")
+    cp_r("#{upstream}/net-http.gemspec", "lib/net/http")
   when "readline-ext"
     rm_rf(%w[ext/readline test/readline])
     cp_r("#{upstream}/ext/readline", "ext")
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]