Merge pull request #19860 from Homebrew/dependabot/bundler/Library/Homebrew/public_suffix-6.0.2

build(deps): bump public_suffix from 6.0.1 to 6.0.2 in /Library/Homebrew
This commit is contained in:
Patrick Linnane 2025-04-30 19:30:40 +00:00 committed by GitHub
commit d36e5bfa2e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 1742 additions and 1794 deletions

View File

@ -44,7 +44,7 @@ GEM
pry (0.15.2) pry (0.15.2)
coderay (~> 1.1) coderay (~> 1.1)
method_source (~> 1.0) method_source (~> 1.0)
public_suffix (6.0.1) public_suffix (6.0.2)
pycall (1.5.2) pycall (1.5.2)
racc (1.8.1) racc (1.8.1)
rainbow (3.1.1) rainbow (3.1.1)

View File

@ -34,7 +34,7 @@ else
end end
end end
end end
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/public_suffix-6.0.1/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/public_suffix-6.0.2/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/addressable-2.8.7/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/ast-2.4.3/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/ast-2.4.3/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/base64-0.2.0/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/base64-0.2.0/lib")

View File

@ -1,4 +1,4 @@
Copyright (c) 2009-2024 Simone Carletti <weppos@weppos.net> Copyright (c) 2009-2025 Simone Carletti <weppos@weppos.net>
MIT License MIT License

View File

@ -4,7 +4,7 @@
# #
# Domain name parser based on the Public Suffix List. # Domain name parser based on the Public Suffix List.
# #
# Copyright (c) 2009-2024 Simone Carletti <weppos@weppos.net> # Copyright (c) 2009-2025 Simone Carletti <weppos@weppos.net>
require_relative "public_suffix/domain" require_relative "public_suffix/domain"
require_relative "public_suffix/version" require_relative "public_suffix/version"

View File

@ -4,7 +4,7 @@
# #
# Domain name parser based on the Public Suffix List. # Domain name parser based on the Public Suffix List.
# #
# Copyright (c) 2009-2024 Simone Carletti <weppos@weppos.net> # Copyright (c) 2009-2025 Simone Carletti <weppos@weppos.net>
module PublicSuffix module PublicSuffix

View File

@ -4,7 +4,7 @@
# #
# Domain name parser based on the Public Suffix List. # Domain name parser based on the Public Suffix List.
# #
# Copyright (c) 2009-2024 Simone Carletti <weppos@weppos.net> # Copyright (c) 2009-2025 Simone Carletti <weppos@weppos.net>
module PublicSuffix module PublicSuffix

View File

@ -4,7 +4,7 @@
# #
# Domain name parser based on the Public Suffix List. # Domain name parser based on the Public Suffix List.
# #
# Copyright (c) 2009-2024 Simone Carletti <weppos@weppos.net> # Copyright (c) 2009-2025 Simone Carletti <weppos@weppos.net>
module PublicSuffix module PublicSuffix

View File

@ -4,7 +4,7 @@
# #
# Domain name parser based on the Public Suffix List. # Domain name parser based on the Public Suffix List.
# #
# Copyright (c) 2009-2024 Simone Carletti <weppos@weppos.net> # Copyright (c) 2009-2025 Simone Carletti <weppos@weppos.net>
module PublicSuffix module PublicSuffix

View File

@ -4,11 +4,11 @@
# #
# Domain name parser based on the Public Suffix List. # Domain name parser based on the Public Suffix List.
# #
# Copyright (c) 2009-2024 Simone Carletti <weppos@weppos.net> # Copyright (c) 2009-2025 Simone Carletti <weppos@weppos.net>
module PublicSuffix module PublicSuffix
# @return [String] the current library version # @return [String] the current library version
VERSION = "6.0.1" VERSION = "6.0.2"
end end