brew vendor-gems: commit updates.

This commit is contained in:
BrewTestBot 2023-07-11 18:04:51 +00:00
parent b254c887ff
commit 88097a8cc2
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
8 changed files with 309 additions and 672 deletions

View File

@ -29,7 +29,7 @@ $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/tzinfo-2.0.6/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/tzinfo-2.0.6/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/zeitwerk-2.6.8/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/zeitwerk-2.6.8/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/activesupport-6.1.7.4/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/activesupport-6.1.7.4/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/public_suffix-5.0.1/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/public_suffix-5.0.3/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/addressable-2.8.4/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/addressable-2.8.4/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}/gems/ast-2.4.2/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/bindata-2.4.15/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/bindata-2.4.15/lib")

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-2022 Simone Carletti <weppos@weppos.net> # Copyright (c) 2009-2023 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-2022 Simone Carletti <weppos@weppos.net> # Copyright (c) 2009-2023 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-2022 Simone Carletti <weppos@weppos.net> # Copyright (c) 2009-2023 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-2022 Simone Carletti <weppos@weppos.net> # Copyright (c) 2009-2023 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-2022 Simone Carletti <weppos@weppos.net> # Copyright (c) 2009-2023 Simone Carletti <weppos@weppos.net>
module PublicSuffix module PublicSuffix

View File

@ -1,15 +1,14 @@
# frozen_string_literal: true # frozen_string_literal: true
#
# = Public Suffix # = Public Suffix
# #
# Domain name parser based on the Public Suffix List. # Domain name parser based on the Public Suffix List.
# #
# Copyright (c) 2009-2022 Simone Carletti <weppos@weppos.net> # Copyright (c) 2009-2023 Simone Carletti <weppos@weppos.net>
module PublicSuffix module PublicSuffix
# @return [String] The current library version. # @return [String] the current library version
VERSION = "5.0.1" VERSION = "5.0.3"
end end