onkcop 0.53.0.2 → 0.53.0.3

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: 4cd4483e4e355a441bb3cf2031929b8311785eb6334dbad83f7b293bae37d1cf
4
- data.tar.gz: ecb1cc879caab790947b4c7a084aef25b2b0066c64c81201a07d0ac3f0694729
3
+ metadata.gz: 9ced5e5050516752205593159c8503536b55e377a19b018033ffa79db52e1e39
4
+ data.tar.gz: fdaac4059815fc22fc7cbb4bff81285ae802806c53849523b0a6b5973685bac3
5
5
  SHA512:
6
- metadata.gz: afed6bf98125efcf8828994d05410a765b166165c3ebb0cce26e1b7d367074f323da9bda527309b7095115dbbe7ef4348f5bedbc170dab830d1743a397edba9f
7
- data.tar.gz: d3e3802fb59c200709c92a71a3eec76089c7e289144978bc2fee0f7abb1f66932d08cef20d98d7702ed3d9b4f172482dff9f21ced1adcb5ae070c754639b3e5b
6
+ metadata.gz: dffeafac90ed8802c6e74623e9ca148047232d460cb769af2c61d730b3d485f6185c7ef288c099472269344f29e9237c99b475986be58b0238ea4fd865bcbf83
7
+ data.tar.gz: c610fb3ce5ae518160c951744715ae61a149cd0d134ed173ccfc05786c27eddff23e9aae0231be6b88520a589703d0dbddfd588f6aa0af7d1053fc5e421b9aa9
@@ -1,5 +1,4 @@
1
1
  language: ruby
2
- # NOTE: travis build fails when `install.bunler` with cache.
3
- # cache: bundler
2
+ cache: bundler
4
3
  rvm:
5
4
  - ruby-head
@@ -1,5 +1,9 @@
1
1
  # onkcop
2
2
 
3
+ ## v0.53.0.3 (2019-01-20)
4
+
5
+ * Ignored `Style/YodaCondition` (@sue445)
6
+
3
7
  ## v0.53.0.2 (2018-10-11)
4
8
 
5
9
  * Remove `Style/EmptyLineAfterGuardClause` cop's configuration
@@ -409,8 +409,9 @@ Style/WordArray:
409
409
 
410
410
  # 0 <= foo && foo < 5 のように数直線上に並べるのは
411
411
  # コードを読みやすくするテクニックなので equality_operators_only に。
412
- Style/YodaCondition:
413
- EnforcedStyle: equality_operators_only
412
+ # Style/YodaCondition:
413
+ # # TODO: rubocop 0.63.0以降はforbid_for_equality_operators_onlyなので依存を引き上げれば有効にできる
414
+ # EnforcedStyle: forbid_for_equality_operators_only
414
415
 
415
416
  # 条件式で arr.size > 0 が使われた時に
416
417
  # if !arr.empty?
@@ -1,3 +1,3 @@
1
1
  module Onkcop
2
- VERSION = "0.53.0.2"
2
+ VERSION = "0.53.0.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: onkcop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.53.0.2
4
+ version: 0.53.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takafumi ONAKA
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-10-11 00:00:00.000000000 Z
11
+ date: 2019-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -128,7 +128,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
128
128
  version: '0'
129
129
  requirements: []
130
130
  rubyforge_project:
131
- rubygems_version: 2.7.6
131
+ rubygems_version: 2.7.3
132
132
  signing_key:
133
133
  specification_version: 4
134
134
  summary: OnkCop is a RuboCop configration gem.