fablicop 1.6.0 → 1.8.0

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: 3009bbd7fcdc4b17292c8cf0aad70726ab589bc517761f3e6153229217780258
4
- data.tar.gz: 70f85187231e6cc60ffe4f917c5d16f285d629e3a78bdefab0279c37de1620a9
3
+ metadata.gz: e791da288c1f6f895448e32c2369ee7e75650bacf20eadacfd0f48ffce2cd4f7
4
+ data.tar.gz: 626845ce9b32122ac3abce5c226a3df55c4ab951b7ac079d02f5edb6bd66fa76
5
5
  SHA512:
6
- metadata.gz: 7e6b3d2d17bcf9e6cd99636ce1a62b0135968c35ee0d40e401fe370d4106482139c2205a54686c86b3798f4437e338a7e94581e2f5f9b071172a975790b5caec
7
- data.tar.gz: 7c8a089dd68490cad6ea5fa0b53f86189b171f193e93dc5760918635941ef47e0ff98c3e089cbaf04c28aa9a5961396c7a8f660eb3640551ac6f24e6ba7a0e4a
6
+ metadata.gz: a51bb62caf7c5582e5c169ef23d1990df47bff484f7cd47e22c829ab604351d625205aad3843d543362d41a5e42c2ed1f27821907d1f2aadb16c442cd05e5c83
7
+ data.tar.gz: 713be62e8be14431848e88e4b63f17512fe6047b8eda2cd2875e2c09da5433bd5df5790cbf465a77dd27e2d552c2c340c584a4ca3dce6f7da965499db0ec781f
data/CHANGELOG.md CHANGED
@@ -2,7 +2,24 @@
2
2
 
3
3
  ## [Unreleased](https://github.com/Fablic/fablicop/tree/HEAD)
4
4
 
5
- [Full Changelog](https://github.com/Fablic/fablicop/compare/v1.5.0...HEAD)
5
+ [Full Changelog](https://github.com/Fablic/fablicop/compare/v1.7.0...HEAD)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Disable `Style/SymbolArray` [\#94](https://github.com/Fablic/fablicop/pull/94) ([yykamei](https://github.com/yykamei))
10
+ - Disable Style/WordArray [\#92](https://github.com/Fablic/fablicop/pull/92) ([yykamei](https://github.com/yykamei))
11
+
12
+ ## [v1.7.0](https://github.com/Fablic/fablicop/tree/v1.7.0) (2022-08-05)
13
+
14
+ [Full Changelog](https://github.com/Fablic/fablicop/compare/v1.6.0...v1.7.0)
15
+
16
+ **Merged pull requests:**
17
+
18
+ - Disable Naming/VariableNumber [\#89](https://github.com/Fablic/fablicop/pull/89) ([yykamei](https://github.com/yykamei))
19
+
20
+ ## [v1.6.0](https://github.com/Fablic/fablicop/tree/v1.6.0) (2022-07-26)
21
+
22
+ [Full Changelog](https://github.com/Fablic/fablicop/compare/v1.5.0...v1.6.0)
6
23
 
7
24
  **Merged pull requests:**
8
25
 
@@ -116,6 +116,14 @@ Style/FetchEnvVar:
116
116
  Style/IfUnlessModifier:
117
117
  Enabled: false
118
118
 
119
+ # We don't care about the style of Arrays.
120
+ Style/WordArray:
121
+ Enabled: false
122
+
123
+ # We don't care about the style of Arrays.
124
+ Style/SymbolArray:
125
+ Enabled: false
126
+
119
127
  ##################### Layout ##################################
120
128
  # We sometimes want to put multiple spaces before arguments.
121
129
  Layout/SpaceBeforeFirstArg:
@@ -236,6 +244,9 @@ Metrics/PerceivedComplexity:
236
244
  Naming/RescuedExceptionsVariableName:
237
245
  Enabled: false
238
246
 
247
+ Naming/VariableNumber:
248
+ Enabled: false
249
+
239
250
  ##################### RSpec ##################################
240
251
 
241
252
  # disabling to not to show errors if there is no when/with/without in the context
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Fablicop
4
- VERSION = '1.6.0'
4
+ VERSION = '1.8.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fablicop
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - tommy
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2022-07-26 00:00:00.000000000 Z
13
+ date: 2022-09-28 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rubocop