rubocop-inhouse 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 87fde93099c9be23e9ec32f96dc58865e92a2d4a3efd826c95bdeabac51e0e64
4
- data.tar.gz: 047fe0d9e0c0b6de43f4ef9b83a4d25049cb153e97e096cc8a409ea6f639aaa4
3
+ metadata.gz: 874a0aa1b66e253256357908b57673b8656451f5b7e6c04db26fe8fff27d92a2
4
+ data.tar.gz: 12f9db69d12eda04234603042a8420699d76580dec09cc5fd87f1d92571d0d6c
5
5
  SHA512:
6
- metadata.gz: a4bdc437be8069352135bfd0f355a494a69d6e0e3b4e2ec2b76941f072251325732c178106c24d4f4424ae22ea94b3a5ba8d21ff8a2676a47620c1b15a6a7aaf
7
- data.tar.gz: 2ee8a08246da3aa0cd7c8c38775589cae26c5875a615c165d9a4131d26e687d3ccab8e253dad273123b2b9ea31b9e612d224b9263be5be03b6148e5028a3d0f7
6
+ metadata.gz: 5c68c7d2fb6b92c4f523f0f2b91582f1ffcbefbb52219ca8017e0acf4039d42b5c71abd518fcdbfff1c116b9a967f9fd207be032537cb7c717abe1dbcf7131a0
7
+ data.tar.gz: f9dd32c19e0c5d33016eee61023a70bc343ec836275d0d324bfd896ef9b5829491762dd9c975553a76220d09d2141007dcab5bc2165b5bbdcc9218e33b6ff61a
data/config/rails.yml CHANGED
@@ -43,7 +43,7 @@ Rails/DangerousColumnNames:
43
43
  Enabled: true
44
44
 
45
45
  Rails/DeprecatedActiveModelErrorsMethods:
46
- Enabled: true
46
+ Enabled: false
47
47
 
48
48
  Rails/DotSeparatedKeys:
49
49
  Enabled: true
@@ -159,8 +159,9 @@ Rails/SaveBang:
159
159
  Enabled: true
160
160
  AllowImplicitReturn: false
161
161
  Exclude:
162
- - "spec/factories/**/*.rb"
162
+ - "spec/**/*.rb"
163
163
  - "config/**/*.rb"
164
+ - "lib/**/*.rb"
164
165
 
165
166
  Rails/ShortI18n:
166
167
  Enabled: true
data/config/style.yml CHANGED
@@ -10,6 +10,10 @@ Style/ArrayIntersect:
10
10
  Style/AutoResourceCleanup:
11
11
  Enabled: true
12
12
 
13
+ Style/BlockDelimiters:
14
+ Exclude:
15
+ - app/views/**/*.rb
16
+
13
17
  Style/CollectionCompact:
14
18
  Enabled: true
15
19
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubocop
4
4
  module Inhouse
5
- VERSION = "0.1.7"
5
+ VERSION = "0.1.8"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-inhouse
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nolan J Tait
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-12 00:00:00.000000000 Z
11
+ date: 2024-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -142,7 +142,6 @@ files:
142
142
  - config/rails.yml
143
143
  - config/rspec.yml
144
144
  - config/style.yml
145
- - lib/rubocop-inhouse-rails.rb
146
145
  - lib/rubocop-inhouse.rb
147
146
  - lib/rubocop/inhouse.rb
148
147
  - lib/rubocop/inhouse/version.rb
@@ -169,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
169
168
  - !ruby/object:Gem::Version
170
169
  version: '0'
171
170
  requirements: []
172
- rubygems_version: 3.5.9
171
+ rubygems_version: 3.5.11
173
172
  signing_key:
174
173
  specification_version: 4
175
174
  summary: Rubocop configuration for InHouse projects
@@ -1,4 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "rubocop"
4
- require "rubocop/inhouse"