brew vendor-gems: commit updates.

This commit is contained in:
BrewTestBot 2025-04-30 19:21:23 +00:00
parent 86ea24ce3c
commit fabd49d34c
No known key found for this signature in database
10 changed files with 1742 additions and 1793 deletions

View File

@ -161,6 +161,7 @@ GEM
PLATFORMS PLATFORMS
aarch64-linux aarch64-linux
arm-linux
arm64-darwin arm64-darwin
x86_64-darwin x86_64-darwin
x86_64-linux x86_64-linux

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