mad_flatter 3.0.0 → 3.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 +4 -4
- data/.rubocop.yml +2 -7
- data/CHANGELOG.md +7 -1
- data/Gemfile.lock +6 -5
- data/lib/mad_flatter/version.rb +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: 85d4fa4513f852525cb24db344aaed91887d222fe104b98e40854ea9252025f3
|
|
4
|
+
data.tar.gz: 4afd6057fb69ca02b8151ed261cdbb0eb6ed649d507ad547a5be6573e1eacc1d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cd5726f343f1e55ad5efbd297d2ed008cc41f936d68c8d749ed00080a8ca06e6450501485c8c487a9ed5b177303722910f99fbb29d84bed4f91e4000588b93c4
|
|
7
|
+
data.tar.gz: e48158fb552fd2a547fc3ceb32a1bcd674450d9f24af06e0a679d687d7503b4d775347eca6acb354cdb8778bd3b04e6e394a332d1585d559bad38433d8621a0f
|
data/.rubocop.yml
CHANGED
|
@@ -13,7 +13,7 @@ AllCops:
|
|
|
13
13
|
- '*.gemspec'
|
|
14
14
|
- 'spec/**/*'
|
|
15
15
|
- 'vendor/**/*'
|
|
16
|
-
- 'scratch
|
|
16
|
+
- 'scratch*.rb'
|
|
17
17
|
|
|
18
18
|
# Align the elements of a hash literal if they span more than one line.
|
|
19
19
|
Layout/HashAlignment:
|
|
@@ -109,7 +109,6 @@ Metrics/CyclomaticComplexity:
|
|
|
109
109
|
|
|
110
110
|
# Limit lines to 80 characters
|
|
111
111
|
Layout/LineLength:
|
|
112
|
-
Max: 120
|
|
113
112
|
Exclude:
|
|
114
113
|
- 'RakeFile'
|
|
115
114
|
- 'spec/**/*.rb'
|
|
@@ -117,7 +116,7 @@ Layout/LineLength:
|
|
|
117
116
|
# Avoid methods longer than 15 lines of code.
|
|
118
117
|
Metrics/MethodLength:
|
|
119
118
|
Max: 20
|
|
120
|
-
|
|
119
|
+
AllowedMethods:
|
|
121
120
|
- swagger_path
|
|
122
121
|
- operation
|
|
123
122
|
|
|
@@ -180,10 +179,6 @@ Style/RedundantReturn:
|
|
|
180
179
|
Style/StringHashKeys:
|
|
181
180
|
Enabled: true
|
|
182
181
|
|
|
183
|
-
Style/StringLiteralsInInterpolation:
|
|
184
|
-
Enabled: true
|
|
185
|
-
EnforcedStyle: double_quotes
|
|
186
|
-
|
|
187
182
|
# Checks if configured preferred methods are used over non-preferred.
|
|
188
183
|
Style/StringMethods:
|
|
189
184
|
Enabled: true
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
mad_flatter (3.0.
|
|
4
|
+
mad_flatter (3.0.1)
|
|
5
5
|
activesupport (~> 7.0, >= 7.0.3.1)
|
|
6
6
|
immutable_struct_ex (~> 1.0)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
activesupport (7.0.7)
|
|
11
|
+
activesupport (7.0.7.2)
|
|
12
12
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
13
13
|
i18n (>= 1.6, < 2)
|
|
14
14
|
minitest (>= 5.1)
|
|
@@ -22,7 +22,7 @@ GEM
|
|
|
22
22
|
docile (1.4.0)
|
|
23
23
|
i18n (1.14.1)
|
|
24
24
|
concurrent-ruby (~> 1.0)
|
|
25
|
-
immutable_struct_ex (1.0.
|
|
25
|
+
immutable_struct_ex (1.0.1)
|
|
26
26
|
json (2.6.3)
|
|
27
27
|
kwalify (0.7.2)
|
|
28
28
|
language_server-protocol (3.17.0.3)
|
|
@@ -59,7 +59,7 @@ GEM
|
|
|
59
59
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
60
60
|
rspec-support (~> 3.12.0)
|
|
61
61
|
rspec-support (3.12.1)
|
|
62
|
-
rubocop (1.56.
|
|
62
|
+
rubocop (1.56.2)
|
|
63
63
|
base64 (~> 0.1.1)
|
|
64
64
|
json (~> 2.3)
|
|
65
65
|
language_server-protocol (>= 3.17.0)
|
|
@@ -98,6 +98,7 @@ GEM
|
|
|
98
98
|
PLATFORMS
|
|
99
99
|
x86_64-darwin-17
|
|
100
100
|
x86_64-darwin-19
|
|
101
|
+
x86_64-darwin-21
|
|
101
102
|
x86_64-linux
|
|
102
103
|
|
|
103
104
|
DEPENDENCIES
|
|
@@ -111,4 +112,4 @@ DEPENDENCIES
|
|
|
111
112
|
simplecov (~> 0.22.0)
|
|
112
113
|
|
|
113
114
|
BUNDLED WITH
|
|
114
|
-
2.3.
|
|
115
|
+
2.3.22
|
data/lib/mad_flatter/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mad_flatter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- gangelo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-08-
|
|
11
|
+
date: 2023-08-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -223,7 +223,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
223
223
|
- !ruby/object:Gem::Version
|
|
224
224
|
version: '0'
|
|
225
225
|
requirements: []
|
|
226
|
-
rubygems_version: 3.
|
|
226
|
+
rubygems_version: 3.2.15
|
|
227
227
|
signing_key:
|
|
228
228
|
specification_version: 4
|
|
229
229
|
summary: mad_flatter gem
|