mad_flatter 3.0.0 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f4351c1a7faa5cd3c6546b7f5de171faba98c4674440b5c9e62325a46359efe3
4
- data.tar.gz: a9c1f4333eddd8be3d38b94e4d9daa7b066c039a48ea8b1cf887360c52d13a8f
3
+ metadata.gz: 85d4fa4513f852525cb24db344aaed91887d222fe104b98e40854ea9252025f3
4
+ data.tar.gz: 4afd6057fb69ca02b8151ed261cdbb0eb6ed649d507ad547a5be6573e1eacc1d
5
5
  SHA512:
6
- metadata.gz: 9c18d2e51c9bec8685a3a679612410e8dd3d8c77d5b22fbd05f4fe45cd173172ba9ca3f9df5e14c2bc606cb4956eaf122e56a20821431ba832b6ef6e2030114f
7
- data.tar.gz: 68e7922983359e7922dc96777e0719db20c271e8930562435e7b8fb2dc9edde94be30a897238b588c80cd0d3df37d704085caeca72a4e20df244dab6f6aa1a0b
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.rb'
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
- IgnoredMethods:
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
@@ -1,6 +1,12 @@
1
+ ### 3.0.1 [2023-08-29]
2
+
3
+ Changes
4
+
5
+ - Update ruby gems.
6
+
1
7
  ### 3.0.0 [2023-08-17]
2
8
 
3
- Breaking hanges
9
+ Breaking changes
4
10
 
5
11
  - Minimum Ruby version now is 3.0.1
6
12
 
data/Gemfile.lock CHANGED
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- mad_flatter (3.0.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.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.0)
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.20
115
+ 2.3.22
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MadFlatter
4
- VERSION = '3.0.0'
4
+ VERSION = '3.0.1'
5
5
  end
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.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-17 00:00:00.000000000 Z
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.3.22
226
+ rubygems_version: 3.2.15
227
227
  signing_key:
228
228
  specification_version: 4
229
229
  summary: mad_flatter gem