meowcop 1.16.0 → 1.16.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 +5 -5
- data/CHANGELOG.md +9 -0
- data/config/rubocop.yml +7 -3
- data/lib/meowcop/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 811a5a0f00ba4aad55b0611ddfc20993b65ca639ee6ddfdd449f3e112be7ff4b
|
|
4
|
+
data.tar.gz: fa9e61b9d1d9cdd7e2ce74c8948152c3d4fdea06a0157635ce8bb61d771b7f82
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 272f88efd32fee7767bdb322a59034fde40fab675abfff4331bdcf579f8df790f973629f46ccc1ee24bf7e3495d069201028f8bce288a0827d3a398a6615e208
|
|
7
|
+
data.tar.gz: 0cdb80b395af87be41746d32587be357382fce4748c4e52d14b4d886578c5fbef1efd894b1349dbb2aa27caeec7aa712b1b34a763b517a400ecf4d0b94583e5b
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
## 1.16.1 (2018-06-18)
|
|
2
|
+
|
|
3
|
+
- [#28](https://github.com/sideci/meowcop/pull/28): Fix unrecognized cops warnings
|
|
4
|
+
- [#29](https://github.com/sideci/meowcop/pull/29): Follow up of new cops (v0.54.0 ~ v0.56.0)
|
|
5
|
+
|
|
6
|
+
## 1.16.0 (2018-05-15)
|
|
7
|
+
|
|
8
|
+
- [#26](https://github.com/sideci/meowcop/pull/26): Split Style/MethodMissing to follow RuboCop 0.56.0
|
|
9
|
+
|
data/config/rubocop.yml
CHANGED
|
@@ -90,6 +90,12 @@ Rails/RequestReferer:
|
|
|
90
90
|
Enabled: false
|
|
91
91
|
Rails/SafeNavigation:
|
|
92
92
|
Enabled: false
|
|
93
|
+
Rails/HttpStatus:
|
|
94
|
+
Enabled: false
|
|
95
|
+
Rails/RefuteMethods:
|
|
96
|
+
Enabled: false
|
|
97
|
+
Rails/AssertNot:
|
|
98
|
+
Enabled: false
|
|
93
99
|
|
|
94
100
|
Security/Eval:
|
|
95
101
|
Enabled: false
|
|
@@ -320,8 +326,6 @@ Style/EndBlock:
|
|
|
320
326
|
Enabled: false
|
|
321
327
|
Style/EvenOdd:
|
|
322
328
|
Enabled: false
|
|
323
|
-
Style/ExtendSelf:
|
|
324
|
-
Enabled: false
|
|
325
329
|
Style/For:
|
|
326
330
|
Enabled: false
|
|
327
331
|
Style/FormatString:
|
|
@@ -356,7 +360,7 @@ Style/MethodDefParentheses:
|
|
|
356
360
|
Enabled: false
|
|
357
361
|
Style/MethodMissingSuper:
|
|
358
362
|
Enabled: false
|
|
359
|
-
Style/
|
|
363
|
+
Style/MissingRespondToMissing:
|
|
360
364
|
Enabled: false
|
|
361
365
|
Style/MixinGrouping:
|
|
362
366
|
Enabled: false
|
data/lib/meowcop/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: meowcop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.16.
|
|
4
|
+
version: 1.16.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Masataka Kuwabara
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-06-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -61,6 +61,7 @@ extensions: []
|
|
|
61
61
|
extra_rdoc_files: []
|
|
62
62
|
files:
|
|
63
63
|
- ".gitignore"
|
|
64
|
+
- CHANGELOG.md
|
|
64
65
|
- Gemfile
|
|
65
66
|
- README.md
|
|
66
67
|
- Rakefile
|
|
@@ -92,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
92
93
|
version: '0'
|
|
93
94
|
requirements: []
|
|
94
95
|
rubyforge_project:
|
|
95
|
-
rubygems_version: 2.6
|
|
96
|
+
rubygems_version: 2.7.6
|
|
96
97
|
signing_key:
|
|
97
98
|
specification_version: 4
|
|
98
99
|
summary: MeowCop is a RuboCop configuration recommended by Actcat inc.
|