Merge pull request #12751 from Homebrew/dependabot/bundler/Library/Homebrew/mechanize-2.8.4

build(deps): bump mechanize from 2.8.3 to 2.8.4 in /Library/Homebrew
This commit is contained in:
Nanda H Krishna 2022-01-18 14:01:24 -05:00 committed by GitHub
commit 2f3bcf34df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 3 deletions

View File

@ -40,7 +40,7 @@ GEM
hana (~> 1.3) hana (~> 1.3)
regexp_parser (~> 2.0) regexp_parser (~> 2.0)
uri_template (~> 0.7) uri_template (~> 0.7)
mechanize (2.8.3) mechanize (2.8.4)
addressable (~> 2.8) addressable (~> 2.8)
domain_name (~> 0.5, >= 0.5.20190701) domain_name (~> 0.5, >= 0.5.20190701)
http-cookie (~> 1.0, >= 1.0.3) http-cookie (~> 1.0, >= 1.0.3)

View File

@ -192,6 +192,10 @@ end
class Mechanize::CookieJar < ::HTTP::CookieJar class Mechanize::CookieJar < ::HTTP::CookieJar
def load(input, *options); end def load(input, *options); end
def save(output, *options); end def save(output, *options); end
private
def load_yaml(yaml); end
end end
module Mechanize::CookieJarIMethods module Mechanize::CookieJarIMethods

View File

@ -51,7 +51,7 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/nokogiri-1.13.1-x86_6
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubyntlm-0.6.3/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubyntlm-0.6.3/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/webrick-1.7.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/webrick-1.7.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/webrobots-0.1.2/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/webrobots-0.1.2/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/mechanize-2.8.3/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/mechanize-2.8.4/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/method_source-1.0.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/method_source-1.0.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/mustache-1.1.1/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/mustache-1.1.1/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/parallel-1.21.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/parallel-1.21.0/lib"

View File

@ -1,4 +1,4 @@
# frozen_string_literal: true # frozen_string_literal: true
class Mechanize class Mechanize
VERSION = "2.8.3" VERSION = "2.8.4"
end end