fablicop 1.7.0 → 1.9.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: d17d26bea73be0170dc33d115e62dce8e31e117c28ebd15f0d4e13194b170976
4
- data.tar.gz: 6daa7320a0ceac473bfff0e0e61a5d98644f15f49b399220e98417e13ab3d20a
3
+ metadata.gz: 982a014f607b768a0b310c33c1f7e75f28f96d65e2f74e05c1817be536b1ca8c
4
+ data.tar.gz: 7b4c3794f9f0ac776bf525ec6cfe4b5aff89c2c93b3bd73e206f4f5bdcbb7d91
5
5
  SHA512:
6
- metadata.gz: 6cf903907362483a5e1cabb39fe9bd4fe3c7a83fb59bd2766460f77b192995e38b5336841367e90fb524241d9554a2f00edaaf0f460fbcdc4ea7bbfd5dc0cd61
7
- data.tar.gz: 43ae6430aafa6e1ae7d8fd684bb5231a10106a67f2dd3ed7d792d479c81d98b89f97b01b00ae46f5e16e11585ebac74aabce81df8721b2c703cfb8fc7ad34fe6
6
+ metadata.gz: 3f1b392b32d2fc29cde9bb625579a20bb57432b5da91fe1e45afc30ade1bb1b6770b6b2d1ae11e7525e3fb2a4bb6cec06d5f127fd8da5359690768fd29ecdae6
7
+ data.tar.gz: f176424e92d5b19bbbe9515761b7b32967112ca8c7a3039ed273741dc22521b0913ffc6dbe7494bf062c058e2ecc95675cb07ee373029a772ff9ef00352b6b21
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.6.0...HEAD)
5
+ [Full Changelog](https://github.com/Fablic/fablicop/compare/v1.8.0...HEAD)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Disable `Rails/HttpStatus` [\#98](https://github.com/Fablic/fablicop/pull/98) ([hanafuji87](https://github.com/hanafuji87))
10
+
11
+ ## [v1.8.0](https://github.com/Fablic/fablicop/tree/v1.8.0) (2022-09-28)
12
+
13
+ [Full Changelog](https://github.com/Fablic/fablicop/compare/v1.7.0...v1.8.0)
14
+
15
+ **Merged pull requests:**
16
+
17
+ - Disable `Style/SymbolArray` [\#94](https://github.com/Fablic/fablicop/pull/94) ([yykamei](https://github.com/yykamei))
18
+ - Disable Style/WordArray [\#92](https://github.com/Fablic/fablicop/pull/92) ([yykamei](https://github.com/yykamei))
19
+
20
+ ## [v1.7.0](https://github.com/Fablic/fablicop/tree/v1.7.0) (2022-08-05)
21
+
22
+ [Full Changelog](https://github.com/Fablic/fablicop/compare/v1.6.0...v1.7.0)
6
23
 
7
24
  **Merged pull requests:**
8
25
 
@@ -23,6 +23,9 @@ Rails:
23
23
  Rails/HttpPositionalArguments:
24
24
  Enabled: false
25
25
 
26
+ Rails/HttpStatus:
27
+ Enabled: false
28
+
26
29
  Rails/InverseOf:
27
30
  Enabled: false
28
31
 
@@ -116,6 +119,14 @@ Style/FetchEnvVar:
116
119
  Style/IfUnlessModifier:
117
120
  Enabled: false
118
121
 
122
+ # We don't care about the style of Arrays.
123
+ Style/WordArray:
124
+ Enabled: false
125
+
126
+ # We don't care about the style of Arrays.
127
+ Style/SymbolArray:
128
+ Enabled: false
129
+
119
130
  ##################### Layout ##################################
120
131
  # We sometimes want to put multiple spaces before arguments.
121
132
  Layout/SpaceBeforeFirstArg:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Fablicop
4
- VERSION = '1.7.0'
4
+ VERSION = '1.9.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.7.0
4
+ version: 1.9.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-08-05 00:00:00.000000000 Z
13
+ date: 2023-01-23 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rubocop
@@ -167,7 +167,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
167
167
  - !ruby/object:Gem::Version
168
168
  version: '0'
169
169
  requirements: []
170
- rubygems_version: 3.3.7
170
+ rubygems_version: 3.4.3
171
171
  signing_key:
172
172
  specification_version: 4
173
173
  summary: fablicop is a RuboCop configration gem.