slimcop 0.19.0 → 0.19.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: db07acf4ac026147b5827e989c90a3fbcc881aacc7302367061e339584fc13e7
4
- data.tar.gz: 52fb2ecdb023fd03f11fd5fa23caffeee0b3d57da472bc103f4e96f2ee1807b3
3
+ metadata.gz: d5ada9b6c6f0cfb0e400a382ca356aac4a5fc553541b1d9ccf69932c7ffb6324
4
+ data.tar.gz: edcffc747394be0e7ae3dc1bfe7a4c6713110f832ff76f397fe3445aa0e5e5dd
5
5
  SHA512:
6
- metadata.gz: a90c3bc878851209904e1867cfdc823661dfaa59ecd916c910548fea00633bbe1f58efe6ca1ad4b07a10e1f9cc0824cb09c21211a7d9a3f459bc2b9e01682128
7
- data.tar.gz: 92ddd1fc97d6d8c7ccf85699e6a4cf29608ab6a85a83ba663c920cec0ec4939a4a398b791bf0fac0c20d4ead7406756fafefe86bbae48c3af0ddd7f427a95f82
6
+ metadata.gz: cfae4df95ea23c5e92d383e2db2fd4ed7b82fa41f8efec4aadf6b70cd1bb4de14a1336d0f70f148e58272c593c31773595de1e2e8dedd57bedca5623df40ea06
7
+ data.tar.gz: d740f940b1fdec39706923d2161a315746507c56d355c0acfdefc1b9f759c99e58df172469e7664b3013dcdc5b30c5debe82ccc15f99dc7e106301a74facbfc6
data/CHANGELOG.md CHANGED
@@ -2,9 +2,13 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.19.1 - 2023-10-16
6
+
7
+ - Fix typo about Style/RedundantParentheses.
8
+
5
9
  ## 0.19.0 - 2023-10-16
6
10
 
7
- - Disable Style/RedundantParantheses by default.
11
+ - Disable Style/RedundantParentheses by default.
8
12
 
9
13
  ## 0.18.0 - 2023-04-04
10
14
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- slimcop (0.19.0)
4
+ slimcop (0.19.1)
5
5
  rubocop (>= 1.49)
6
6
  slimi (>= 0.5.1)
7
7
  templatecop
data/default.yml CHANGED
@@ -124,7 +124,7 @@ Style/ParallelAssignment:
124
124
  Style/RedundantLineContinuation:
125
125
  Enabled: false
126
126
 
127
- Style/RedundantParantheses:
127
+ Style/RedundantParentheses:
128
128
  Enabled: false
129
129
 
130
130
  Style/RescueModifier:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Slimcop
4
- VERSION = '0.19.0'
4
+ VERSION = '0.19.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slimcop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.0
4
+ version: 0.19.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryo Nakamura