Merge pull request #16263 from Homebrew/dependabot/bundler/Library/Homebrew/json_schemer-2.1.1

build(deps-dev): bump json_schemer from 2.1.0 to 2.1.1 in /Library/Homebrew
This commit is contained in:
Patrick Linnane 2023-11-28 11:35:32 -08:00 committed by GitHub
commit 0ed0d9bafc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 4 deletions

View File

@ -29,7 +29,7 @@ GEM
i18n (1.14.1) i18n (1.14.1)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
json (2.6.3) json (2.6.3)
json_schemer (2.1.0) json_schemer (2.1.1)
hana (~> 1.3) hana (~> 1.3)
regexp_parser (~> 2.0) regexp_parser (~> 2.0)
simpleidn (~> 0.2) simpleidn (~> 0.2)

View File

@ -271,9 +271,9 @@ class JSONSchemer::Draft202012::Vocab::Core::Schema < ::JSONSchemer::Keyword
end end
class JSONSchemer::Draft202012::Vocab::Core::UnknownKeyword < ::JSONSchemer::Keyword class JSONSchemer::Draft202012::Vocab::Core::UnknownKeyword < ::JSONSchemer::Keyword
def fetch_unknown!(token); end def fetch(token); end
def parse; end def parse; end
def unknown_schema!; end def parsed_schema; end
def validate(instance, instance_location, keyword_location, _context); end def validate(instance, instance_location, keyword_location, _context); end
end end
@ -685,8 +685,10 @@ class JSONSchemer::Keyword
def absolute_keyword_location; end def absolute_keyword_location; end
def error_key; end def error_key; end
def fetch(key); end
def parent; end def parent; end
def parsed; end def parsed; end
def parsed_schema; end
def root; end def root; end
def schema_pointer; end def schema_pointer; end
def validate(_instance, _instance_location, _keyword_location, _context); end def validate(_instance, _instance_location, _keyword_location, _context); end
@ -865,6 +867,7 @@ class JSONSchemer::Schema
def defs_keyword; end def defs_keyword; end
def error(formatted_instance_location:, **options); end def error(formatted_instance_location:, **options); end
def error_key; end def error_key; end
def fetch(key); end
def fetch_content_encoding(content_encoding, *args, &block); end def fetch_content_encoding(content_encoding, *args, &block); end
def fetch_content_media_type(content_media_type, *args, &block); end def fetch_content_media_type(content_media_type, *args, &block); end
def fetch_format(format, *args, &block); end def fetch_format(format, *args, &block); end

View File

@ -60,7 +60,7 @@ $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/unf_ext-0.0.9.1/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/unf_ext-0.0.9.1/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/unf-0.1.4/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/unf-0.1.4/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/simpleidn-0.2.1/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/simpleidn-0.2.1/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/json_schemer-2.1.0/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/json_schemer-2.1.1/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/method_source-1.0.0/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/method_source-1.0.0/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/mustache-1.1.1/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/mustache-1.1.1/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/parallel-1.23.0/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/parallel-1.23.0/lib")