house_style 1.5.0 → 1.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA256:
3
- metadata.gz: e37853a62b316acf3feb0e25a8a47c80dad85a33021581a758e5c63ef8fceb39
4
- data.tar.gz: a673e1f59bb879b18b037482b360727825dd510a78cd1d670dee2057d61d4337
2
+ SHA1:
3
+ metadata.gz: 7f3e03115cf21942533eb2b83671c1a6fee4fc32
4
+ data.tar.gz: 515e38a2d767ec64164fb3f71590be5fecfcd664
5
5
  SHA512:
6
- metadata.gz: 14c2def27308a3770033d82805334e3f58e1d3d3bf64f8badb6bd5a37cd3a56ab06745fc9f1b7829c500ef6a919b2fbddfaaafc11fc7d9404bb768b11b03e34a
7
- data.tar.gz: fd2a5dc5dd8b17fc582d878a7097b9ff0ea94984a5995988926a608ea3c9dd653db0b07b5274bfae8363155572168d5ec650b5874ef5d8c0ac5c7f3873911cf6
6
+ metadata.gz: ff7d4e0e7f311682be3469f3f9c49e49eb9442b39037195641a5ef69a6b53b2b4199ca7348b3134caacd1c676c3bba33211c56af02cacb718cfa1a877a6df38d
7
+ data.tar.gz: eedaf71742b220a3f2b70b7fef336e6a4ed1b10371a2203e728502903044285659fccfd06a6b63f2d71a6ed4b4948161339d94922be83f15733a50775916dae7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.5.1
4
+ - [FIX] Remove `Include` values. Since 0.57 `Include` overwrites the hardcoded defaults. All values here are already included in the defaults, so no point in defining them here anymore.
5
+ - [FIX] `SpaceInsideHashLiteralBraces` now belongs to `Layout` instead of `Style`
6
+ - [FIX] Disabling new added cop `Style/AccessModifierDeclarations`. We use inline declarations (`private :foo :bar`) as default in our codebase.
7
+
3
8
  ## 1.5.0
4
9
  - updated rubocop to 0.63.1
5
10
 
data/house_style.gemspec CHANGED
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'house_style'
8
- spec.version = '1.5.0'
8
+ spec.version = '1.5.1'
9
9
  spec.authors = ['Altmetric', 'Scott Matthewman']
10
10
  spec.email = ['engineering@altmetric.com', 'scott.matthewman@gmail.com']
11
11
 
data/rspec/rubocop.yml CHANGED
@@ -17,7 +17,7 @@ Style/BlockDelimiters:
17
17
  - spec/factories/**/*.rb
18
18
  Style/Documentation:
19
19
  Enabled: false
20
- Style/SpaceInsideHashLiteralBraces:
20
+ Layout/SpaceInsideHashLiteralBraces:
21
21
  Enabled: false
22
22
  Style/SymbolProc:
23
23
  Exclude:
@@ -4,23 +4,6 @@ AllCops:
4
4
  ExtraDetails: true
5
5
  UseCache: true
6
6
 
7
- Include:
8
- - '**/*.gemspec'
9
- - '**/*.podspec'
10
- - '**/*.jbuilder'
11
- - '**/*.rake'
12
- - '**/*.opal'
13
- - '**/config.ru'
14
- - '**/Gemfile'
15
- - '**/Rakefile'
16
- - '**/Capfile'
17
- - '**/Guardfile'
18
- - '**/Podfile'
19
- - '**/Thorfile'
20
- - '**/Vagrantfile'
21
- - '**/Berksfile'
22
- - '**/Cheffile'
23
- - '**/Vagabondfile'
24
7
  Exclude:
25
8
  - 'vendor/**/*'
26
9
  - 'bin/**/*'
data/ruby/metrics.yml CHANGED
@@ -8,4 +8,3 @@ Metrics/LineLength:
8
8
  too short; 120 characters is a good compromise.
9
9
  Metrics/MethodLength:
10
10
  Max: 10
11
-
data/ruby/style.yml CHANGED
@@ -55,3 +55,5 @@ Style/StringLiterals:
55
55
  Enabled: false
56
56
  Style/StringMethods:
57
57
  Enabled: true
58
+ Style/AccessModifierDeclarations:
59
+ Enabled: false
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: house_style
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Altmetric
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-01-28 00:00:00.000000000 Z
12
+ date: 2019-01-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rubocop
@@ -130,7 +130,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
130
130
  - !ruby/object:Gem::Version
131
131
  version: '0'
132
132
  requirements: []
133
- rubygems_version: 3.0.1
133
+ rubyforge_project:
134
+ rubygems_version: 2.6.13
134
135
  signing_key:
135
136
  specification_version: 4
136
137
  summary: A centralised store of house style rules