mad_flatter 3.0.0 → 3.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +2 -7
- data/CHANGELOG.md +13 -1
- data/Gemfile.lock +19 -20
- data/lib/mad_flatter/version.rb +1 -1
- metadata +5 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a34d04dc08df29719663ddc00eb432a970add5615b429430b803cb5be310be2
|
4
|
+
data.tar.gz: 0a3857440bcbbd6526939f3a23a709dff66bb0dbb116a2616cf30601673480df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c93ead10e0acd4100d906e2217bb43f2d582c46a8c3bda2cf923c1b03092498afcb262947a1283358aaef98c85368385d614d07f83fd45f744e430cd49cc6ea
|
7
|
+
data.tar.gz: 1c5e4a53436ed6d0d0afead7cf4fd4e96ccf253f345f04d3fe6516728b79f4ce0d91b8039ffa65463028a20406aa614c66577d1b1e4b2f51e03a5d531751f645
|
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,20 +1,19 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
mad_flatter (3.0.
|
5
|
-
activesupport (~> 7.0
|
4
|
+
mad_flatter (3.0.2)
|
5
|
+
activesupport (~> 7.0.8)
|
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.
|
11
|
+
activesupport (7.0.8)
|
12
12
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
13
13
|
i18n (>= 1.6, < 2)
|
14
14
|
minitest (>= 5.1)
|
15
15
|
tzinfo (~> 2.0)
|
16
16
|
ast (2.4.2)
|
17
|
-
base64 (0.1.1)
|
18
17
|
byebug (11.1.3)
|
19
18
|
coderay (1.1.3)
|
20
19
|
concurrent-ruby (1.2.2)
|
@@ -22,14 +21,14 @@ GEM
|
|
22
21
|
docile (1.4.0)
|
23
22
|
i18n (1.14.1)
|
24
23
|
concurrent-ruby (~> 1.0)
|
25
|
-
immutable_struct_ex (1.0.
|
24
|
+
immutable_struct_ex (1.0.2)
|
26
25
|
json (2.6.3)
|
27
26
|
kwalify (0.7.2)
|
28
27
|
language_server-protocol (3.17.0.3)
|
29
28
|
method_source (1.0.0)
|
30
|
-
minitest (5.
|
29
|
+
minitest (5.20.0)
|
31
30
|
parallel (1.23.0)
|
32
|
-
parser (3.2.2.
|
31
|
+
parser (3.2.2.4)
|
33
32
|
ast (~> 2.4.1)
|
34
33
|
racc
|
35
34
|
pry (0.14.2)
|
@@ -38,13 +37,13 @@ GEM
|
|
38
37
|
pry-byebug (3.10.1)
|
39
38
|
byebug (~> 11.0)
|
40
39
|
pry (>= 0.13, < 0.15)
|
41
|
-
racc (1.7.
|
40
|
+
racc (1.7.2)
|
42
41
|
rainbow (3.1.1)
|
43
42
|
reek (6.1.4)
|
44
43
|
kwalify (~> 0.7.0)
|
45
44
|
parser (~> 3.2.0)
|
46
45
|
rainbow (>= 2.0, < 4.0)
|
47
|
-
regexp_parser (2.8.
|
46
|
+
regexp_parser (2.8.2)
|
48
47
|
rexml (3.2.6)
|
49
48
|
rspec (3.12.0)
|
50
49
|
rspec-core (~> 3.12.0)
|
@@ -59,29 +58,28 @@ GEM
|
|
59
58
|
diff-lcs (>= 1.2.0, < 2.0)
|
60
59
|
rspec-support (~> 3.12.0)
|
61
60
|
rspec-support (3.12.1)
|
62
|
-
rubocop (1.
|
63
|
-
base64 (~> 0.1.1)
|
61
|
+
rubocop (1.57.2)
|
64
62
|
json (~> 2.3)
|
65
63
|
language_server-protocol (>= 3.17.0)
|
66
64
|
parallel (~> 1.10)
|
67
|
-
parser (>= 3.2.2.
|
65
|
+
parser (>= 3.2.2.4)
|
68
66
|
rainbow (>= 2.2.2, < 4.0)
|
69
67
|
regexp_parser (>= 1.8, < 3.0)
|
70
68
|
rexml (>= 3.2.5, < 4.0)
|
71
69
|
rubocop-ast (>= 1.28.1, < 2.0)
|
72
70
|
ruby-progressbar (~> 1.7)
|
73
71
|
unicode-display_width (>= 2.4.0, < 3.0)
|
74
|
-
rubocop-ast (1.
|
72
|
+
rubocop-ast (1.30.0)
|
75
73
|
parser (>= 3.2.1.0)
|
76
|
-
rubocop-capybara (2.
|
74
|
+
rubocop-capybara (2.19.0)
|
77
75
|
rubocop (~> 1.41)
|
78
|
-
rubocop-factory_bot (2.
|
76
|
+
rubocop-factory_bot (2.24.0)
|
79
77
|
rubocop (~> 1.33)
|
80
|
-
rubocop-performance (1.19.
|
78
|
+
rubocop-performance (1.19.1)
|
81
79
|
rubocop (>= 1.7.0, < 2.0)
|
82
80
|
rubocop-ast (>= 0.4.0)
|
83
|
-
rubocop-rspec (2.
|
84
|
-
rubocop (~> 1.
|
81
|
+
rubocop-rspec (2.25.0)
|
82
|
+
rubocop (~> 1.40)
|
85
83
|
rubocop-capybara (~> 2.17)
|
86
84
|
rubocop-factory_bot (~> 2.22)
|
87
85
|
ruby-progressbar (1.13.0)
|
@@ -93,11 +91,12 @@ GEM
|
|
93
91
|
simplecov_json_formatter (0.1.4)
|
94
92
|
tzinfo (2.0.6)
|
95
93
|
concurrent-ruby (~> 1.0)
|
96
|
-
unicode-display_width (2.
|
94
|
+
unicode-display_width (2.5.0)
|
97
95
|
|
98
96
|
PLATFORMS
|
99
97
|
x86_64-darwin-17
|
100
98
|
x86_64-darwin-19
|
99
|
+
x86_64-darwin-21
|
101
100
|
x86_64-linux
|
102
101
|
|
103
102
|
DEPENDENCIES
|
@@ -111,4 +110,4 @@ DEPENDENCIES
|
|
111
110
|
simplecov (~> 0.22.0)
|
112
111
|
|
113
112
|
BUNDLED WITH
|
114
|
-
2.3.
|
113
|
+
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- gangelo
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -16,20 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
20
|
-
- - ">="
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: 7.0.3.1
|
19
|
+
version: 7.0.8
|
23
20
|
type: :runtime
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
26
23
|
requirements:
|
27
24
|
- - "~>"
|
28
25
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
30
|
-
- - ">="
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: 7.0.3.1
|
26
|
+
version: 7.0.8
|
33
27
|
- !ruby/object:Gem::Dependency
|
34
28
|
name: immutable_struct_ex
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -223,7 +217,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
223
217
|
- !ruby/object:Gem::Version
|
224
218
|
version: '0'
|
225
219
|
requirements: []
|
226
|
-
rubygems_version: 3.
|
220
|
+
rubygems_version: 3.2.15
|
227
221
|
signing_key:
|
228
222
|
specification_version: 4
|
229
223
|
summary: mad_flatter gem
|