ws-style 6.5.1 → 6.5.2

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: 4a605b5e2240f475f0d822ece0003a3b28c824d6778bbae60dc0be53225d31cf
4
- data.tar.gz: f75e46a2c110efbadf47c9b4f3fb544c2477c3940bbb67b031455ce9bc94ca33
3
+ metadata.gz: '080f20dbb2a789dae262e81c9bf0212430bae72c7e731d401f311b8b102a7a50'
4
+ data.tar.gz: 5907fa3bfa4c9ad521a58b4aeb37ee602d4751dac3fce90c8aaee63fa69a55bb
5
5
  SHA512:
6
- metadata.gz: 9101a95f343a4ec65a25b14ac79f455ed8c10297d4343db28b91edaef5455ede575141cdb894967e597054eea34f31dd02d6e8270e87992c8c6e27cb80628230
7
- data.tar.gz: e2383ed5c76230f7a3d045463378e5832707c77ca45d6f5fb6c60d867e5f413d8c8b984f90c0799f46c8a5c6ab4ddd02d9fa9ac0ad84a8641c80ab11e32e3ada
6
+ metadata.gz: 9d6280ff2f2c040a8a8e4419e10c22b1664f3d2f4e7a15f5371d06fbc10b30495a66bebfbef85da8baabcc436e57a1e2e40a4b20390b3b849a68ad88c65d3d2c
7
+ data.tar.gz: 3ec5c0a81583012046c85be1f8e29f56f43511669e04baea75336e278225e228bef0f122b18c4012e5f4ac1d29bd38e518bcb8d23c44dc3ea955927a70645c6c
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## 6.5.2 - 2020-12-17
8
+ - Add backstage catalog file + sonarqube project settings
9
+
10
+ ## 6.5.1 - 2020-11-30
11
+ - Disable EmptyLineBetweenClassDefs added in rubocop 1.4
12
+
7
13
  ## 6.5.0 - 2020-10-26
8
14
  - Upgrade RuboCop and RuboCop RSpec
9
15
 
@@ -0,0 +1,12 @@
1
+ ---
2
+ apiVersion: backstage.io/v1alpha1
3
+ kind: Component
4
+ metadata:
5
+ name: ws-style
6
+ description: Ruby style for services & libraries (using Rubocop)
7
+ tags:
8
+ - ruby
9
+ - open-source
10
+ spec:
11
+ type: library
12
+ lifecycle: production
data/core.yml CHANGED
@@ -84,7 +84,7 @@ Metrics/CyclomaticComplexity:
84
84
  Max: 7
85
85
 
86
86
  Metrics/MethodLength:
87
- ExcludedMethods: ["extended"]
87
+ IgnoredMethods: ["extended"]
88
88
  Max: 15
89
89
 
90
90
  Metrics/ModuleLength:
@@ -1,5 +1,5 @@
1
1
  module Ws
2
2
  module Style
3
- VERSION = '6.5.1'.freeze
3
+ VERSION = '6.5.2'.freeze
4
4
  end
5
5
  end
@@ -0,0 +1,4 @@
1
+ sonar.projectKey=ws-style
2
+ sonar.ruby.coverage.reportPaths=coverage/.resultset.json
3
+ sonar.sources=lib
4
+ sonar.tests=spec
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ws-style
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.5.1
4
+ version: 6.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Graham
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-11-30 00:00:00.000000000 Z
11
+ date: 2021-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -172,11 +172,13 @@ files:
172
172
  - Rakefile
173
173
  - bin/console
174
174
  - bin/setup
175
+ - catalog-info.yaml
175
176
  - core.yml
176
177
  - default.yml
177
178
  - lib/ws/style.rb
178
179
  - lib/ws/style/version.rb
179
180
  - rails.yml
181
+ - sonar-project.properties
180
182
  - ws-style.gemspec
181
183
  homepage: https://github.com/wealthsimple/ws-style
182
184
  licenses: []