rubocop-coreyja 0.1 → 0.2.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: 66bd0faca0d0618bbfb29a6466e17167bc5e3a958f930548ec527486172aacbe
4
- data.tar.gz: ea63a05239094df3e4e996947cd3d54baba6242640556c2c680a788591c30fe0
3
+ metadata.gz: cc9783fdd905bffc3f23311bb3177f88c89e16684b01f9d1c7ea5abd96ef08b9
4
+ data.tar.gz: 3b2366f8490b31bcee855994b217c968db60860472313e1a5171ec1e0370e89c
5
5
  SHA512:
6
- metadata.gz: '09e789096d91cc484448a95e56b5ecdaf89005c2db11b52943e11b197f9688b6f8d92f4365973756cd1abf01a7bbb22d85b9153f30b17f47e16ac8d021a70893'
7
- data.tar.gz: 54477766c559b2cfd699098127bd7a9a1e0c8e5c1d4c5b8d28186436cf7c2b0df8ab296ad82d751f400d618a16176f61f437f575f1a695c5881c62737a154c2a
6
+ metadata.gz: 0b9c555cc1bb23c5b4677af34b344cf8905e8fde69524965f5239bb7b61b0e2ac903d80e6ac05dd251e0ea8b15ff80e3085e268aca21927a81d255632a6ff2af
7
+ data.tar.gz: 21ece39f9a2bbfc4c20e52e3a55ff9dbe6353c4eea65804fb72bbc2592701a1b3321372a9e1fa3b8159a3e0263834c87acd5a781851457b8cf3932c090cc4fca
@@ -0,0 +1,20 @@
1
+ require: rubocop-rspec
2
+
3
+ AllCops:
4
+ Exclude:
5
+ - 'vendor/**/*'
6
+
7
+ Metrics/ClassLength:
8
+ Exclude:
9
+ - 'spec/**/*'
10
+
11
+ Metrics/BlockLength:
12
+ Exclude:
13
+ - 'spec/**/*'
14
+ - '*.gemspec'
15
+
16
+ Metrics/LineLength:
17
+ Max: 120
18
+
19
+ Style/Documentation:
20
+ Enabled: false
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubocop
4
4
  module Coreyja
5
- VERSION = '0.1'
5
+ VERSION = '0.2.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-coreyja
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.1'
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Corey Alexander
@@ -103,7 +103,7 @@ extra_rdoc_files: []
103
103
  files:
104
104
  - LICENSE
105
105
  - README.md
106
- - config/coreyja.yml
106
+ - config/default.yml
107
107
  - lib/rubocop/coreyja.rb
108
108
  - lib/rubocop/coreyja/version.rb
109
109
  homepage: https://github.com/coreyja/rubocop-coreyja
data/config/coreyja.yml DELETED
@@ -1,7 +0,0 @@
1
- require: rubocop-rspec
2
-
3
- Metrics/LineLength:
4
- Max: 120
5
-
6
- Style/Documentation:
7
- Enabled: false