ws-style 7.1.2 → 7.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: 2022382601442a4c50ff36045b514b5198d4b2e2e8175d0ba60db03f88e47c5c
4
- data.tar.gz: '02601951bfecb6eef5862dd9a88a12be02601f398bae505489a360d656c73407'
3
+ metadata.gz: c84b601c32503cbb69f06b7f21f53b9883ffb80aa8bbcc4978a8460b1bd17c97
4
+ data.tar.gz: aa6dd552115ae54bb9ea117244ded31810276f11ac9b7ef0c2313c1d8e46f00a
5
5
  SHA512:
6
- metadata.gz: 112d465e7c745ec2d44526140d86e6666731d853c086e6b0a724482e28ae105a9731e45a8a6ee3b74eb81dd20f737c88ca868d86076c6f4d417a0e1678cc712b
7
- data.tar.gz: 9587fb66569c5960a5c57548c0b2853a29418edc19519f0ea3faecfb3f3723ad4bc44cc9c38b4fc4af6c814910251aa00104a28da693cdcc47c50d51f4793919
6
+ metadata.gz: 7570ad769e1cb67e09d016bfab139eff1782eb249c8b576def82128ddb5690b694fa55259413d0e7266b609c557a7692f5fb5d9414b61b34701e79ec80a413db
7
+ data.tar.gz: 5b1ba4b6729c1c4308f81eaee07b156a3fa0d80a6c893b942db0cc6e81b219d56f8648af417667463ee28cc1bcedc262b42eb2321234c22b9654a86adf02e370
data/CHANGELOG.md CHANGED
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## 7.2.0 - 2023-07-14
10
+ ### Changed
11
+ - Fix issue where rubocop-rspec was disabled by default after the switch to standardrb
12
+
13
+ ## 7.1.3 - 2023-07-14
14
+ ### Changed
15
+ - Added SECURITY.md file
16
+
9
17
  ## 7.1.2 - 2023-07-13
10
18
  ### Changed
11
19
  - Fix missing cop error with standard 1.3.0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ws-style (7.1.2)
4
+ ws-style (7.2.0)
5
5
  rubocop-rspec (>= 2.2.0)
6
6
  rubocop-vendor (>= 0.11)
7
7
  standard (>= 1.30.1)
@@ -32,7 +32,7 @@ GEM
32
32
  json (2.6.3)
33
33
  language_server-protocol (3.17.0.3)
34
34
  lint_roller (1.1.0)
35
- minitest (5.18.1)
35
+ minitest (5.19.0)
36
36
  parallel (1.23.0)
37
37
  parse_a_changelog (1.3.0)
38
38
  treetop (~> 1.6)
@@ -47,7 +47,7 @@ GEM
47
47
  rake (13.0.6)
48
48
  rchardet (1.8.0)
49
49
  regexp_parser (2.8.1)
50
- rexml (3.2.5)
50
+ rexml (3.2.6)
51
51
  rspec (3.12.0)
52
52
  rspec-core (~> 3.12.0)
53
53
  rspec-expectations (~> 3.12.0)
@@ -84,7 +84,7 @@ GEM
84
84
  activesupport (>= 4.2.0)
85
85
  rack (>= 1.1)
86
86
  rubocop (>= 1.33.0, < 2.0)
87
- rubocop-rspec (2.22.0)
87
+ rubocop-rspec (2.23.0)
88
88
  rubocop (~> 1.33)
89
89
  rubocop-capybara (~> 2.17)
90
90
  rubocop-factory_bot (~> 2.22)
@@ -100,7 +100,7 @@ GEM
100
100
  standard-custom (1.0.2)
101
101
  lint_roller (~> 1.0)
102
102
  rubocop (~> 1.50)
103
- standard-performance (1.1.1)
103
+ standard-performance (1.1.2)
104
104
  lint_roller (~> 1.1)
105
105
  rubocop-performance (~> 1.18.0)
106
106
  standard-rails (0.1.0)
data/SECURITY.md ADDED
@@ -0,0 +1,15 @@
1
+ # Security Policy
2
+
3
+ Wealthsimple secures our code base using a combination of code review, dependency review, and periodic security reviews. Static analysis is performed during automated verification additionally safeguards against common coding errors which may result in vulnerabilities.
4
+
5
+ ### Reporting a Vulnerability
6
+
7
+ For general defects about this project, please file a [Bug Report](https://github.com/wealthsimple/ws-style/issues/new/choose)
8
+
9
+ To report a vulnerability about this project please [Report a security vulnerability](https://github.com/wealthsimple/ws-style/security/advisories/new)
10
+
11
+ If you have a vulnerability to report about the Wealthsimple platform, please use our white hat bug bounty program at [Hackerone](https://hackerone.com/wealthsimple)
12
+
13
+ ### General Support
14
+
15
+ For additional support, please open a [Github Discussion](https://github.com/wealthsimple/ws-style/discussions).
data/core.yml CHANGED
@@ -29,7 +29,6 @@ AllCops:
29
29
  - "db/migrate/**/*"
30
30
  - "db/schema.rb"
31
31
  - "gemfiles/**/*"
32
- - "lib/tasks/circle_0.rake"
33
32
  - "log/**/*"
34
33
  - "node_modules/**/*"
35
34
  - "public/**/*"
@@ -72,3 +71,7 @@ Style/TrailingCommaInArguments:
72
71
 
73
72
  Style/TrailingCommaInHashLiteral:
74
73
  EnforcedStyleForMultiline: comma
74
+
75
+ # enable rubocop-vendor
76
+ Vendor:
77
+ Enabled: true
@@ -1,5 +1,5 @@
1
1
  module Ws
2
2
  module Style
3
- VERSION = '7.1.2'.freeze
3
+ VERSION = '7.2.0'.freeze
4
4
  end
5
5
  end
data/rspec.yml CHANGED
@@ -1,6 +1,9 @@
1
1
  require:
2
2
  - rubocop-rspec
3
3
 
4
+ RSpec:
5
+ Enabled: true
6
+
4
7
  # rubocop-rspec overrides
5
8
  RSpec/AnyInstance:
6
9
  Enabled: false
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: 7.1.2
4
+ version: 7.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Graham
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-07-13 00:00:00.000000000 Z
11
+ date: 2023-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: standard
@@ -185,6 +185,7 @@ files:
185
185
  - Gemfile.lock
186
186
  - README.md
187
187
  - Rakefile
188
+ - SECURITY.md
188
189
  - bin/console
189
190
  - bin/rake
190
191
  - bin/rspec