http-cookie 1.1.3 → 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: cc645f84489b2b016326900a0bbd0a4919711c16f09cae5f3baf5ac7fdf7f366
4
- data.tar.gz: 327b8e0a7857967ab65808f1d7b5931f826e7c88729918ee5937b7d88a810240
3
+ metadata.gz: f9646a8e61d3bd1af54f1b8c942c1d760816ca2d50f65d3e1a178f93410ddfc3
4
+ data.tar.gz: 4480a1a64080ff763b3b86aefce79343b9c43d3191753b6f03d7788d9110a5d0
5
5
  SHA512:
6
- metadata.gz: d698ae1112415747aa49468ec67ca02abd745596335f6036bdf58b4c344f8b65df712d1543ff194dfbaff6149dec7e6535ee518390613f9ed3820993babfb9cc
7
- data.tar.gz: ac12354ef53ee60e69b035bedf196fa05c5901a8a361a9746654577eab93879e317826ac75ce85cb48ca5992dda6482f6deef2ea19d0497fd19496d326a0c794
6
+ metadata.gz: 405648352cb955f1f8a709879cac04a8984d14658634cf9fb9f88104d2761e4431c8f60c546f7ae79a61dad34f2875d635c2df1920423bca1d3dfdcb7693f8e8
7
+ data.tar.gz: 43f69d3a18c4b5e066cb7caed32a02e14ba68cfda9008832a1de6f066b74704e6866ba3f063fa9f640ffb1f03111ac881787c6e8dfaf373cac79a31e2f3fbe18
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 1.1.4 (2026-04-07)
2
+
3
+ - Fix `require "http/cookie_jar"` raising `NameError: uninitialized constant HTTP`. (#61)
4
+
5
+
1
6
  ## 1.1.3 (2026-04-06)
2
7
 
3
8
  - Restore compatibility with Ruby 2.6.
@@ -1,5 +1,5 @@
1
1
  module HTTP
2
2
  class Cookie
3
- VERSION = "1.1.3"
3
+ VERSION = "1.1.4"
4
4
  end
5
5
  end
@@ -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.3
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Akinori MUSHA