rails_cookie_overflow 1.0.0 → 1.0.1

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: e6391194f72d0ca194ec6c80551ca2aa777ec92669047f59814593461278d8aa
4
- data.tar.gz: 25447b8c0a12ea9be9add2e32b76dc3c782a38ae9c28f12b80672ac23efde9c9
3
+ metadata.gz: eb51f4e9827c338150d525e977d6d8aca41ea68f09bac320dcc46e9ac70f405f
4
+ data.tar.gz: dbeb8c407d19ccf13f2f0b8ead5e883cff93d7146e6020e1d9b4b67d007a0426
5
5
  SHA512:
6
- metadata.gz: 2ef2b34bb0d81ad7dfbd6eaba4b3b28147fce75ad0789d805b79b99f23c213084e117647c5b9d77256fef9f63e27a9753bb4426341caaf8740831f6a1ae019e6
7
- data.tar.gz: c92af088261df02f644b44773f4bc02260fbbfd546aca4007948293bd81223a18c008b90c18d230bd0f33fc225e69f7ac5edc629e7e0940cd629ee2f47390be7
6
+ metadata.gz: cc4874ca42bc9dde3ee4d116bdb565af3ad85ce396a81f55b57b551a8a91cf7687e3a804d7fd0af0536da314e4ac96aae7db3e3bd2f4ed87acee5de510976c97
7
+ data.tar.gz: f7f1830d3243002e00c53540b9454d1119f0671039d6df16db6031418e22756217210add819fc1a11bcc14139464ba7ae38b773a71a55da0c23e5adda9af3312
data/CHANGELOG.md CHANGED
@@ -1,5 +1,5 @@
1
1
  ## [Unreleased]
2
2
 
3
- ## [0.1.0] - 2022-07-15
3
+ ## [1.0.0] - 2022-07-15
4
4
 
5
5
  - Initial release
data/README.md CHANGED
@@ -28,7 +28,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
28
28
 
29
29
  ## Contributing
30
30
 
31
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/rails_cookie_overflow. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/rails_cookie_overflow/blob/master/CODE_OF_CONDUCT.md).
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/ritikesh/rails_cookie_overflow. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/ritikesh/rails_cookie_overflow/blob/master/CODE_OF_CONDUCT.md).
32
32
 
33
33
  ## License
34
34
 
@@ -36,4 +36,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
36
36
 
37
37
  ## Code of Conduct
38
38
 
39
- Everyone interacting in the RailsCookieOverflow project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/rails_cookie_overflow/blob/master/CODE_OF_CONDUCT.md).
39
+ Everyone interacting in the RailsCookieOverflow project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/ritikesh/rails_cookie_overflow/blob/master/CODE_OF_CONDUCT.md).
@@ -4,7 +4,7 @@ module RailsCookieOverflow
4
4
  # Railtie to set the middleware during boot
5
5
  class Railtie < ::Rails::Railtie
6
6
  initializer "rails_cookie_overflow.insert_middleware" do |app|
7
- app.config.middleware.insert_before "ActionDispatch::Cookies", "RailsCookieOverflow::Middleware"
7
+ app.config.middleware.insert_before ActionDispatch::Cookies, RailsCookieOverflow::Middleware
8
8
  end
9
9
  end
10
10
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsCookieOverflow
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_cookie_overflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ritikesh
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-07-15 00:00:00.000000000 Z
11
+ date: 2022-11-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -74,7 +74,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0'
76
76
  requirements: []
77
- rubygems_version: 3.0.9
77
+ rubygems_version: 3.3.7
78
78
  signing_key:
79
79
  specification_version: 4
80
80
  summary: Handle CookieOverflow gracefully
close