[ruby/net-http] freeze rest of lib

https://github.com/ruby/net-http/commit/455a74734a
This commit is contained in:
Josh Nichols 2023-08-12 12:19:50 -04:00 committed by git
parent 4165ec91d8
commit 4d21134f3f
7 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
# frozen_string_literal: false
# frozen_string_literal: true
#
# = net/http.rb
#

View File

@ -1,4 +1,4 @@
# frozen_string_literal: false
# frozen_string_literal: true
# for backward compatibility
# :enddoc:

View File

@ -1,4 +1,4 @@
# frozen_string_literal: false
# frozen_string_literal: true
module Net
# Net::HTTP exception class.
# You cannot use Net::HTTPExceptions directly; instead, you must use

View File

@ -1,4 +1,4 @@
# frozen_string_literal: false
# frozen_string_literal: true
module Net::HTTP::ProxyDelta #:nodoc: internal use only
private

View File

@ -1,4 +1,4 @@
# frozen_string_literal: false
# frozen_string_literal: true
# This class is the base class for \Net::HTTP request classes.
# The class should not be used directly;

View File

@ -1,4 +1,4 @@
# frozen_string_literal: false
# frozen_string_literal: true
# HTTP/1.1 methods --- RFC2616

View File

@ -1,4 +1,4 @@
# frozen_string_literal: false
# frozen_string_literal: true
=begin
= net/https -- SSL/TLS enhancement for Net::HTTP.