mad_flatter 2.1.0 → 3.0.0
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 +35 -14
- data/Gemfile.lock +45 -31
- data/lib/mad_flatter/version.rb +1 -1
- metadata +13 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f4351c1a7faa5cd3c6546b7f5de171faba98c4674440b5c9e62325a46359efe3
|
|
4
|
+
data.tar.gz: a9c1f4333eddd8be3d38b94e4d9daa7b066c039a48ea8b1cf887360c52d13a8f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c18d2e51c9bec8685a3a679612410e8dd3d8c77d5b22fbd05f4fe45cd173172ba9ca3f9df5e14c2bc606cb4956eaf122e56a20821431ba832b6ef6e2030114f
|
|
7
|
+
data.tar.gz: 68e7922983359e7922dc96777e0719db20c271e8930562435e7b8fb2dc9edde94be30a897238b588c80cd0d3df37d704085caeca72a4e20df244dab6f6aa1a0b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,21 +1,42 @@
|
|
|
1
|
+
### 3.0.0 [2023-08-17]
|
|
2
|
+
|
|
3
|
+
Breaking hanges
|
|
4
|
+
|
|
5
|
+
- Minimum Ruby version now is 3.0.1
|
|
6
|
+
|
|
7
|
+
Changes
|
|
8
|
+
|
|
9
|
+
- Update ruby gems.
|
|
10
|
+
|
|
1
11
|
### 2.1.0
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
12
|
+
|
|
13
|
+
Changes
|
|
14
|
+
|
|
15
|
+
- Limit ruby version to Gem::Requirement.new(">= 2.3.1", "< 4.0").
|
|
16
|
+
- Update ruby gems.
|
|
5
17
|
|
|
6
18
|
### 2.0.0
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
19
|
+
|
|
20
|
+
Changes
|
|
21
|
+
|
|
22
|
+
- Add spec coverage.
|
|
23
|
+
- Update README.md.
|
|
24
|
+
|
|
25
|
+
Breaking changes
|
|
26
|
+
|
|
27
|
+
- Remove unused Module HashRetrievable.
|
|
28
|
+
|
|
29
|
+
Bug Fixes
|
|
30
|
+
|
|
31
|
+
- Fix bug that raised an error when :namespace option is not a Symbol due cut & paste error from validation routine that checked the :metadata option for validity.
|
|
32
|
+
- Fix bug when checking `MadFlatter::Service#options.namespace? an error was raised if option :namespace was not passed as an option since it is optional.
|
|
15
33
|
|
|
16
34
|
### 1.0.1-beta
|
|
17
|
-
|
|
18
|
-
|
|
35
|
+
|
|
36
|
+
Bug Fixes
|
|
37
|
+
|
|
38
|
+
- Fix bug requiring support codez in lib/mad_flatter.rb.
|
|
19
39
|
|
|
20
40
|
### 1.0.0-alpha
|
|
21
|
-
|
|
41
|
+
|
|
42
|
+
Initial release.
|
data/Gemfile.lock
CHANGED
|
@@ -1,100 +1,114 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
mad_flatter (
|
|
4
|
+
mad_flatter (3.0.0)
|
|
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.
|
|
11
|
+
activesupport (7.0.7)
|
|
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)
|
|
17
18
|
byebug (11.1.3)
|
|
18
19
|
coderay (1.1.3)
|
|
19
|
-
concurrent-ruby (1.
|
|
20
|
+
concurrent-ruby (1.2.2)
|
|
20
21
|
diff-lcs (1.5.0)
|
|
21
22
|
docile (1.4.0)
|
|
22
|
-
i18n (1.
|
|
23
|
+
i18n (1.14.1)
|
|
23
24
|
concurrent-ruby (~> 1.0)
|
|
24
25
|
immutable_struct_ex (1.0.0)
|
|
25
|
-
json (2.6.
|
|
26
|
+
json (2.6.3)
|
|
26
27
|
kwalify (0.7.2)
|
|
28
|
+
language_server-protocol (3.17.0.3)
|
|
27
29
|
method_source (1.0.0)
|
|
28
|
-
minitest (5.
|
|
29
|
-
parallel (1.
|
|
30
|
-
parser (3.
|
|
30
|
+
minitest (5.19.0)
|
|
31
|
+
parallel (1.23.0)
|
|
32
|
+
parser (3.2.2.3)
|
|
31
33
|
ast (~> 2.4.1)
|
|
32
|
-
|
|
34
|
+
racc
|
|
35
|
+
pry (0.14.2)
|
|
33
36
|
coderay (~> 1.1)
|
|
34
37
|
method_source (~> 1.0)
|
|
35
38
|
pry-byebug (3.10.1)
|
|
36
39
|
byebug (~> 11.0)
|
|
37
40
|
pry (>= 0.13, < 0.15)
|
|
41
|
+
racc (1.7.1)
|
|
38
42
|
rainbow (3.1.1)
|
|
39
|
-
reek (6.1.
|
|
43
|
+
reek (6.1.4)
|
|
40
44
|
kwalify (~> 0.7.0)
|
|
41
|
-
parser (~> 3.
|
|
45
|
+
parser (~> 3.2.0)
|
|
42
46
|
rainbow (>= 2.0, < 4.0)
|
|
43
|
-
regexp_parser (2.
|
|
44
|
-
rexml (3.2.
|
|
47
|
+
regexp_parser (2.8.1)
|
|
48
|
+
rexml (3.2.6)
|
|
45
49
|
rspec (3.12.0)
|
|
46
50
|
rspec-core (~> 3.12.0)
|
|
47
51
|
rspec-expectations (~> 3.12.0)
|
|
48
52
|
rspec-mocks (~> 3.12.0)
|
|
49
|
-
rspec-core (3.12.
|
|
53
|
+
rspec-core (3.12.2)
|
|
50
54
|
rspec-support (~> 3.12.0)
|
|
51
|
-
rspec-expectations (3.12.
|
|
55
|
+
rspec-expectations (3.12.3)
|
|
52
56
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
53
57
|
rspec-support (~> 3.12.0)
|
|
54
|
-
rspec-mocks (3.12.
|
|
58
|
+
rspec-mocks (3.12.6)
|
|
55
59
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
56
60
|
rspec-support (~> 3.12.0)
|
|
57
|
-
rspec-support (3.12.
|
|
58
|
-
rubocop (1.
|
|
61
|
+
rspec-support (3.12.1)
|
|
62
|
+
rubocop (1.56.0)
|
|
63
|
+
base64 (~> 0.1.1)
|
|
59
64
|
json (~> 2.3)
|
|
65
|
+
language_server-protocol (>= 3.17.0)
|
|
60
66
|
parallel (~> 1.10)
|
|
61
|
-
parser (>= 3.
|
|
67
|
+
parser (>= 3.2.2.3)
|
|
62
68
|
rainbow (>= 2.2.2, < 4.0)
|
|
63
69
|
regexp_parser (>= 1.8, < 3.0)
|
|
64
70
|
rexml (>= 3.2.5, < 4.0)
|
|
65
|
-
rubocop-ast (>= 1.
|
|
71
|
+
rubocop-ast (>= 1.28.1, < 2.0)
|
|
66
72
|
ruby-progressbar (~> 1.7)
|
|
67
|
-
unicode-display_width (>=
|
|
68
|
-
rubocop-ast (1.
|
|
69
|
-
parser (>= 3.
|
|
70
|
-
rubocop-
|
|
73
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
|
74
|
+
rubocop-ast (1.29.0)
|
|
75
|
+
parser (>= 3.2.1.0)
|
|
76
|
+
rubocop-capybara (2.18.0)
|
|
77
|
+
rubocop (~> 1.41)
|
|
78
|
+
rubocop-factory_bot (2.23.1)
|
|
79
|
+
rubocop (~> 1.33)
|
|
80
|
+
rubocop-performance (1.19.0)
|
|
71
81
|
rubocop (>= 1.7.0, < 2.0)
|
|
72
82
|
rubocop-ast (>= 0.4.0)
|
|
73
|
-
rubocop-rspec (2.
|
|
83
|
+
rubocop-rspec (2.23.2)
|
|
74
84
|
rubocop (~> 1.33)
|
|
75
|
-
|
|
76
|
-
|
|
85
|
+
rubocop-capybara (~> 2.17)
|
|
86
|
+
rubocop-factory_bot (~> 2.22)
|
|
87
|
+
ruby-progressbar (1.13.0)
|
|
88
|
+
simplecov (0.22.0)
|
|
77
89
|
docile (~> 1.1)
|
|
78
90
|
simplecov-html (~> 0.11)
|
|
79
91
|
simplecov_json_formatter (~> 0.1)
|
|
80
92
|
simplecov-html (0.12.3)
|
|
81
93
|
simplecov_json_formatter (0.1.4)
|
|
82
|
-
tzinfo (2.0.
|
|
94
|
+
tzinfo (2.0.6)
|
|
83
95
|
concurrent-ruby (~> 1.0)
|
|
84
|
-
unicode-display_width (2.
|
|
96
|
+
unicode-display_width (2.4.2)
|
|
85
97
|
|
|
86
98
|
PLATFORMS
|
|
99
|
+
x86_64-darwin-17
|
|
87
100
|
x86_64-darwin-19
|
|
101
|
+
x86_64-linux
|
|
88
102
|
|
|
89
103
|
DEPENDENCIES
|
|
90
104
|
mad_flatter!
|
|
91
|
-
pry-byebug (~> 3.
|
|
105
|
+
pry-byebug (~> 3.10, >= 3.10.1)
|
|
92
106
|
reek (~> 6.1, >= 6.1.1)
|
|
93
107
|
rspec (>= 3.10)
|
|
94
108
|
rubocop (~> 1.31)
|
|
95
109
|
rubocop-performance (~> 1.14, >= 1.14.3)
|
|
96
110
|
rubocop-rspec (~> 2.12, >= 2.12.1)
|
|
97
|
-
simplecov (~> 0.
|
|
111
|
+
simplecov (~> 0.22.0)
|
|
98
112
|
|
|
99
113
|
BUNDLED WITH
|
|
100
114
|
2.3.20
|
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:
|
|
4
|
+
version: 3.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- gangelo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-08-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -50,14 +50,20 @@ dependencies:
|
|
|
50
50
|
requirements:
|
|
51
51
|
- - "~>"
|
|
52
52
|
- !ruby/object:Gem::Version
|
|
53
|
-
version: '3.
|
|
53
|
+
version: '3.10'
|
|
54
|
+
- - ">="
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
version: 3.10.1
|
|
54
57
|
type: :development
|
|
55
58
|
prerelease: false
|
|
56
59
|
version_requirements: !ruby/object:Gem::Requirement
|
|
57
60
|
requirements:
|
|
58
61
|
- - "~>"
|
|
59
62
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: '3.
|
|
63
|
+
version: '3.10'
|
|
64
|
+
- - ">="
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
version: 3.10.1
|
|
61
67
|
- !ruby/object:Gem::Dependency
|
|
62
68
|
name: reek
|
|
63
69
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -152,14 +158,14 @@ dependencies:
|
|
|
152
158
|
requirements:
|
|
153
159
|
- - "~>"
|
|
154
160
|
- !ruby/object:Gem::Version
|
|
155
|
-
version: 0.
|
|
161
|
+
version: 0.22.0
|
|
156
162
|
type: :development
|
|
157
163
|
prerelease: false
|
|
158
164
|
version_requirements: !ruby/object:Gem::Requirement
|
|
159
165
|
requirements:
|
|
160
166
|
- - "~>"
|
|
161
167
|
- !ruby/object:Gem::Version
|
|
162
|
-
version: 0.
|
|
168
|
+
version: 0.22.0
|
|
163
169
|
description: mad_flatter gem
|
|
164
170
|
email:
|
|
165
171
|
- web.gma@gmail.com
|
|
@@ -207,7 +213,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
207
213
|
requirements:
|
|
208
214
|
- - ">="
|
|
209
215
|
- !ruby/object:Gem::Version
|
|
210
|
-
version:
|
|
216
|
+
version: 3.0.1
|
|
211
217
|
- - "<"
|
|
212
218
|
- !ruby/object:Gem::Version
|
|
213
219
|
version: '4.0'
|