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 +4 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +5 -3
- data/lib/porridge/version.rb +1 -1
- data/porridge.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cee1cdc29d2dcb795df3b83fa7e2a4cd5b403571fb2b9dfae0d7e12ff7b9015c
|
|
4
|
+
data.tar.gz: 6bde07e6e0ef0075cb20094ea7efe9be76aa8e08627f9ad981493c98db4f0d70
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a3c723fa46f164ba9aebf6b1f807899fbe82d42e333e55ace9a332062a4c22e5596b5d1c5ab1477ed9ec0676986fefd6797b8bd0d1da4d1b3d27380be08183a3
|
|
7
|
+
data.tar.gz: a34e07209b991cef3226aea3ada8838e0ee31c2bca76858e315d5e6cd45f42a3e4dc005cd56496dd8870de030b9f42836c4a375a487353e45cb4e34b04815461
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
porridge (0.2.
|
|
5
|
-
activesupport (~>
|
|
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 (
|
|
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
|
data/lib/porridge/version.rb
CHANGED
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', '~>
|
|
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.
|
|
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: '
|
|
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: '
|
|
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.
|