http-cookie 1.1.2 → 1.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a54011678448308cb23a11e27ab9d76a5aa007ccdaec33f2e9a4bebe5333b9b5
4
- data.tar.gz: ee6087b85f1e8bd5f347b31d1ae40ddd15a3b9a03b7304ebc2b0996918a0e1be
3
+ metadata.gz: f9646a8e61d3bd1af54f1b8c942c1d760816ca2d50f65d3e1a178f93410ddfc3
4
+ data.tar.gz: 4480a1a64080ff763b3b86aefce79343b9c43d3191753b6f03d7788d9110a5d0
5
5
  SHA512:
6
- metadata.gz: 8a735b62c638155c3d10d21eca458bcc5c9396b08b36dded4aaf25cd2321c1a2f9c8b7595d169f4cc9999822cd84eb2324805d6b5ab93868e5e3218fe5045d81
7
- data.tar.gz: 0b0a2b5e4e69e3b7a8526e14f891bb8053f32c9c1a24ead5df38bf82e4cbfa62efc0cdc05103bc79eee3c3e40c32506e840c96dc5e88a288c7ed21bec478456f
6
+ metadata.gz: 405648352cb955f1f8a709879cac04a8984d14658634cf9fb9f88104d2761e4431c8f60c546f7ae79a61dad34f2875d635c2df1920423bca1d3dfdcb7693f8e8
7
+ data.tar.gz: 43f69d3a18c4b5e066cb7caed32a02e14ba68cfda9008832a1de6f066b74704e6866ba3f063fa9f640ffb1f03111ac881787c6e8dfaf373cac79a31e2f3fbe18
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## 1.1.4 (2026-04-07)
2
+
3
+ - Fix `require "http/cookie_jar"` raising `NameError: uninitialized constant HTTP`. (#61)
4
+
5
+
6
+ ## 1.1.3 (2026-04-06)
7
+
8
+ - Restore compatibility with Ruby 2.6.
9
+
10
+
1
11
  ## 1.1.2 (2026-04-06)
2
12
 
3
13
  - Stop requiring sqlite3 at load time by changing `MozillaStore::Database` from inheritance to composition.
@@ -1,5 +1,5 @@
1
1
  module HTTP
2
2
  class Cookie
3
- VERSION = "1.1.2"
3
+ VERSION = "1.1.4"
4
4
  end
5
5
  end
@@ -61,12 +61,12 @@ class HTTP::CookieJar
61
61
  @db.closed?
62
62
  end
63
63
 
64
- def execute(...)
65
- @db.execute(...)
64
+ def execute(*args, &block)
65
+ @db.execute(*args, &block)
66
66
  end
67
67
 
68
- def create_function(...)
69
- @db.create_function(...)
68
+ def create_function(*args, &block)
69
+ @db.create_function(*args, &block)
70
70
  end
71
71
  end
72
72
  # :startdoc:
@@ -1,5 +1,7 @@
1
1
  # :markup: markdown
2
2
 
3
+ require "http/cookie/version"
4
+
3
5
  ##
4
6
  # This class is used to manage the Cookies that have been returned from
5
7
  # any particular website.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: http-cookie
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Akinori MUSHA