Merge pull request #17544 from Homebrew/dependabot/bundler/Library/Homebrew/public_suffix-6.0.0

This commit is contained in:
Patrick Linnane 2024-06-21 09:07:37 -07:00 committed by GitHub
commit f45a22a9f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
20 changed files with 496 additions and 411 deletions

View File

@ -1,8 +1,8 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0)
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
ast (2.4.2)
bigdecimal (3.1.8)
bindata (2.5.0)
@ -46,7 +46,7 @@ GEM
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
public_suffix (5.1.1)
public_suffix (6.0.0)
racc (1.8.0)
rainbow (3.1.1)
rbi (0.1.13)

View File

@ -4,6 +4,7 @@
# This is an autogenerated file for types exported from the `addressable` gem.
# Please instead update this file by running `bin/tapioca gem addressable`.
# Addressable is a library for processing links and URIs.
#
# source://addressable//lib/addressable/version.rb#22
@ -637,7 +638,7 @@ class Addressable::Template::MatchData
# @param key [String, Symbol, Fixnum] Capture index or name. Note that when accessing by with index
# of 0, the full URI will be returned. The intention is to mimic
# the ::MatchData#[] behavior.
# @param len [#to_int, nil] If provided, an array of values will be returend with the given
# @param len [#to_int, nil] If provided, an array of values will be returned with the given
# parameter used as length.
# @return [Array, String, nil] The captured value corresponding to the index or name. If the
# value was not provided or the key is unknown, nil will be

View File

@ -34,8 +34,8 @@ else
end
end
end
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/public_suffix-5.1.1/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/addressable-2.8.6/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/public_suffix-6.0.0/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/addressable-2.8.7/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/ast-2.4.2/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/extensions/arm64-darwin-20/#{Gem.extension_api_version}/bigdecimal-3.1.8")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/bigdecimal-3.1.8/lib")

View File

@ -157,7 +157,7 @@ module Addressable
# the ::MatchData#[] behavior.
#
# @param [#to_int, nil] len
# If provided, an array of values will be returend with the given
# If provided, an array of values will be returned with the given
# parameter used as length.
#
# @return [Array, String, nil]

View File

@ -1539,7 +1539,7 @@ module Addressable
# Relative paths with colons in the first segment are ambiguous.
path = path.sub(":", "%2F")
end
# String#split(delimeter, -1) uses the more strict splitting behavior
# String#split(delimiter, -1) uses the more strict splitting behavior
# found by default in Python.
result = path.strip.split(SLASH, -1).map do |segment|
Addressable::URI.normalize_component(

View File

@ -23,7 +23,7 @@ if !defined?(Addressable::VERSION)
module VERSION
MAJOR = 2
MINOR = 8
TINY = 6
TINY = 7
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -9,6 +9,6 @@
module PublicSuffix
# @return [String] the current library version
VERSION = "5.1.1"
VERSION = "6.0.0"
end