porridge 0.2.1 → 0.2.2

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: 577ef844764ac84f75892ea93545680c853a8fde96f4dad4a01c9b28cad3587e
4
- data.tar.gz: 3f6bdc1af01753095c26e7a0711163db6885a575ec80439f0443c18d7dad6b2f
3
+ metadata.gz: cee1cdc29d2dcb795df3b83fa7e2a4cd5b403571fb2b9dfae0d7e12ff7b9015c
4
+ data.tar.gz: 6bde07e6e0ef0075cb20094ea7efe9be76aa8e08627f9ad981493c98db4f0d70
5
5
  SHA512:
6
- metadata.gz: aef62fe3204d9ad45cbd774083ddd57c80fc478781669e7443b7b0b214b8890d8dc27de13e76aca63b7aa70fbb098745965192baee94f7db515bf30da6fbed5d
7
- data.tar.gz: e7ea2c1b4570aa0426220b5e1ebdf967e7490b2e5820e9e4d33f2fcb5bf64835f2c9c6c91f48ec18d677c69770486b8a4c19d3e2dff7376cf479d5915a68f530
6
+ metadata.gz: a3c723fa46f164ba9aebf6b1f807899fbe82d42e333e55ace9a332062a4c22e5596b5d1c5ab1477ed9ec0676986fefd6797b8bd0d1da4d1b3d27380be08183a3
7
+ data.tar.gz: a34e07209b991cef3226aea3ada8838e0ee31c2bca76858e315d5e6cd45f42a3e4dc005cd56496dd8870de030b9f42836c4a375a487353e45cb4e34b04815461
data/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@
4
4
 
5
5
  ### Changed
6
6
 
7
+ - Bumped required `activesupport` version to 6.0.x.
8
+
9
+ ## [0.2.1] - 2022-01-19
10
+
11
+ ### Changed
12
+
7
13
  - Bumped required `activesupport` version to 7.0.x.
8
14
 
9
15
  ## [0.2.0] - 2022-01-19
data/Gemfile.lock CHANGED
@@ -1,17 +1,18 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- porridge (0.2.0)
5
- activesupport (~> 7.0)
4
+ porridge (0.2.1)
5
+ activesupport (~> 6.0)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activesupport (7.0.1)
10
+ activesupport (6.1.4.4)
11
11
  concurrent-ruby (~> 1.0, >= 1.0.2)
12
12
  i18n (>= 1.6, < 2)
13
13
  minitest (>= 5.1)
14
14
  tzinfo (~> 2.0)
15
+ zeitwerk (~> 2.3)
15
16
  ast (2.4.2)
16
17
  byebug (11.1.3)
17
18
  codecov (0.6.0)
@@ -67,6 +68,7 @@ GEM
67
68
  tzinfo (2.0.4)
68
69
  concurrent-ruby (~> 1.0)
69
70
  unicode-display_width (2.1.0)
71
+ zeitwerk (2.5.3)
70
72
 
71
73
  PLATFORMS
72
74
  x86_64-linux
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Porridge
4
- VERSION = '0.2.1'
4
+ VERSION = '0.2.2'
5
5
  end
data/porridge.gemspec CHANGED
@@ -42,7 +42,7 @@ Gem::Specification.new do |spec|
42
42
  # Uncomment to register a new dependency of your gem
43
43
  # spec.add_dependency "example-gem", "~> 1.0"
44
44
 
45
- spec.add_dependency 'activesupport', '~> 7.0'
45
+ spec.add_dependency 'activesupport', '~> 6.0'
46
46
 
47
47
  # For more information and examples about making a new gem, checkout our
48
48
  # guide at: https://bundler.io/guides/creating_gem.html
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: porridge
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jacob
@@ -114,14 +114,14 @@ dependencies:
114
114
  requirements:
115
115
  - - "~>"
116
116
  - !ruby/object:Gem::Version
117
- version: '7.0'
117
+ version: '6.0'
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
- version: '7.0'
124
+ version: '6.0'
125
125
  description: |
126
126
  `porridge` is a plain Ruby gem that takes a flexible, object-oriented approach to serialization. `porridge`
127
127
  transforms objects into ruby hashes and arrays, which can then be serialized with other libraries.