rubocop-codetakt 0.82.0.1 → 0.83.0.0

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: e42d51bc1455fb48b32ff21210ade5dde90b37cc0f5cfe423fdfd381558a2d4c
4
- data.tar.gz: c939fc2be4ed15dc72678a00946e531b28461d79849c095b40ff182562fb1c7b
3
+ metadata.gz: 74197207090407a16111797eec67eace293f5044205c6c2cddb660f0ee1cbcbe
4
+ data.tar.gz: 6576637d5db9a171f3f29950ecb974e5bd093f5ccad175c8f59f46a9d45b33a9
5
5
  SHA512:
6
- metadata.gz: 37830772b2b7ff96b139c7a6ee75f0a270fe77baf229032302a0ab4022fa5fb92b4a2194957875a903580ae1c4e59c06cf5844fc81f5ffa586f7bc1afcadfbaa
7
- data.tar.gz: 69593d0ef9954bc719280b80405119dfe7786dc904786761281cc7dc5fc31fc3ee8ac6f03651ecf3659256ac15a47bfd187f68c48cb4e7847466d85886cac274
6
+ metadata.gz: 0b47b0320871768ab3d68a22f68722a627b2000300447ad69133599f6be0e3c200b3d08fc5713ed1783e80228e4b78ff0b35be8c402343fb15ffd91704dd2560
7
+ data.tar.gz: a8f5f97b9b40b91afaebfc037397776e1e7c204d8f886f0d61938120eda013a2830894c9ffe2a4d506b6de55c5e7ee08ec4c81f68308ef16e41a5d1e3c9ae225
data/.rubocop.yml CHANGED
@@ -1,4 +1,12 @@
1
- inherit_from:
2
- - "config/rubocop.yml"
3
- - "config/performance.yml"
4
- - "config/rspec.yml"
1
+ inherit_gem:
2
+ rubocop-codetakt:
3
+ - "config/rubocop.yml"
4
+ # uncomment if use performance cops
5
+ - "config/performance.yml"
6
+ # uncomment if use rails cops
7
+ - "config/rails.yml"
8
+ # uncomment if use rspec cops
9
+ - "config/rspec.yml"
10
+
11
+ AllCops:
12
+ TargetRubyVersion: 2.5
data/CHANGELOG.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # rubocop-codetakt:
2
2
 
3
- ## v0.82.0.1 (2020-06-01)
3
+ ## v0.83.0.0 (2020-05-18)
4
4
 
5
5
  * Make the code in this repository to no offenses
6
- * Accept the default setting of new cops
6
+ * Update `rubocop` v0.83.0
7
7
 
8
8
  ## v0.82.0.0 (2020-04-20)
9
9
 
data/config/rubocop.yml CHANGED
@@ -1,9 +1,5 @@
1
+ # 自動生成されるものはチェック対象から除外する
1
2
  AllCops:
2
- # We accept the default setting of rookie cops.
3
- # https://docs.rubocop.org/rubocop/versioning.html
4
- NewCops: enable
5
-
6
- # Exclude automatically generated files.
7
3
  Exclude:
8
4
  - "node_modules/**/*" # rubocop config/default.yml
9
5
  - "vendor/**/*" # rubocop config/default.yml
@@ -1,5 +1,5 @@
1
1
  module RuboCop
2
2
  module Codetakt
3
- VERSION = '0.82.0.1'.freeze
3
+ VERSION = '0.83.0.0'.freeze
4
4
  end
5
5
  end
@@ -21,5 +21,5 @@ Gem::Specification.new do |spec|
21
21
  spec.executables = spec.files.grep(%r{^exe/}) {|f| File.basename(f) }
22
22
  spec.require_paths = ['lib']
23
23
 
24
- spec.add_dependency 'rubocop', '~> 0.82.0'
24
+ spec.add_dependency 'rubocop', '~> 0.83.0'
25
25
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-codetakt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.82.0.1
4
+ version: 0.83.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - codeTakt Developers
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-06-01 00:00:00.000000000 Z
11
+ date: 2020-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.82.0
19
+ version: 0.83.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.82.0
26
+ version: 0.83.0
27
27
  description: |2
28
28
  This includes the RuboCop configuration used by codeTakt. It is
29
29
  for the unification and linting of coding styles.