ws-style 6.14.4 → 6.14.5

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: 74e155a1867264224c2aa6c44282093f97b4b0ebc78cbedcb0a5561d9778a029
4
- data.tar.gz: d806c88b2b72e772b04fd72fb8d97339e3cbaff1af87308ba797bf5fe159bd72
3
+ metadata.gz: 0a652b1f6e7ca41edd00f40118b4dbda22f1fe660bc65286f40b09d8565c1094
4
+ data.tar.gz: ced1f06d034dfa0847b8a857619a4243cb3bfe483307def9b25dd10eca1d68b8
5
5
  SHA512:
6
- metadata.gz: d86699b8c7c3e775dfd3791ba0a7e3db6bc9643559b50023f17cebe4cc312ed76a26dd9185be1ce13cd1c41c3421bb5b276b404896aa38198889fb4f9dbe145f
7
- data.tar.gz: 1365f63d8af96476e86f50727330a0c58ea833f0c8ac41aff0928f31d62e33721d6134c59c19e3b74e669fd497e0d96915c2b7464cebb33aacd2ef6fd65b6872
6
+ metadata.gz: 511425d7162fc57a35126066655cacdea5cf13c1a2fc3e1b7c3c7db647ce9d0121720c42fb4378983d93d31c863a3d6edee52381c89e76eceeef34ccdafc364f
7
+ data.tar.gz: adb717479cecba29d748617ce375525c7b7df226ba248fac4c16f8d7e1c32b27533009c7edc876d2c3f48bcd8c2b8d2f084c7aa2f28bf5e01b805305aaf0e63e
@@ -20,10 +20,11 @@ jobs:
20
20
  - name: Fetch main branch
21
21
  run: git fetch origin main
22
22
  - uses: r7kamura/rubocop-problem-matchers-action@v1
23
- - uses: wealthsimple/toolbox-script@main
24
- name: RuboCop
25
- with:
26
- script: toolbox.ruby.lint.run()
23
+ - name: Lint
24
+ run: |
25
+ bundle exec rubocop
26
+ bundle exec bundle-audit update
27
+ bundle exec bundle-audit check
27
28
  - name: Run rspec
28
29
  run: bundle exec rspec
29
30
  - name: Release the gem
data/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## 6.14.5 - 2023-02-23
10
+ ### Changed
11
+ - Remove use of toolbox-script in Github workflows
12
+
9
13
  ## 6.14.4 - 2023-01-31
10
14
  ### Changed
11
15
  - Upgraded to ruby 3
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ws-style (6.14.4)
4
+ ws-style (6.14.5)
5
5
  rubocop (>= 1.36)
6
6
  rubocop-performance (>= 1.10.2)
7
7
  rubocop-rails (>= 2.9.1)
@@ -24,7 +24,7 @@ GEM
24
24
  thor (~> 1.0)
25
25
  concurrent-ruby (1.2.0)
26
26
  diff-lcs (1.5.0)
27
- git (1.13.1)
27
+ git (1.13.2)
28
28
  addressable (~> 2.8)
29
29
  rchardet (~> 1.8)
30
30
  i18n (1.12.0)
@@ -34,7 +34,7 @@ GEM
34
34
  parallel (1.22.1)
35
35
  parse_a_changelog (1.2.0)
36
36
  treetop (~> 1.6)
37
- parser (3.2.0.0)
37
+ parser (3.2.1.0)
38
38
  ast (~> 2.4.1)
39
39
  polyglot (0.3.5)
40
40
  public_suffix (5.0.1)
@@ -42,13 +42,13 @@ GEM
42
42
  rainbow (3.1.1)
43
43
  rake (13.0.6)
44
44
  rchardet (1.8.0)
45
- regexp_parser (2.6.2)
45
+ regexp_parser (2.7.0)
46
46
  rexml (3.2.5)
47
47
  rspec (3.12.0)
48
48
  rspec-core (~> 3.12.0)
49
49
  rspec-expectations (~> 3.12.0)
50
50
  rspec-mocks (~> 3.12.0)
51
- rspec-core (3.12.0)
51
+ rspec-core (3.12.1)
52
52
  rspec-support (~> 3.12.0)
53
53
  rspec-expectations (3.12.2)
54
54
  diff-lcs (>= 1.2.0, < 2.0)
@@ -57,7 +57,7 @@ GEM
57
57
  diff-lcs (>= 1.2.0, < 2.0)
58
58
  rspec-support (~> 3.12.0)
59
59
  rspec-support (3.12.0)
60
- rubocop (1.44.1)
60
+ rubocop (1.45.1)
61
61
  json (~> 2.3)
62
62
  parallel (~> 1.10)
63
63
  parser (>= 3.2.0.0)
@@ -67,11 +67,11 @@ GEM
67
67
  rubocop-ast (>= 1.24.1, < 2.0)
68
68
  ruby-progressbar (~> 1.7)
69
69
  unicode-display_width (>= 2.4.0, < 3.0)
70
- rubocop-ast (1.24.1)
71
- parser (>= 3.1.1.0)
72
- rubocop-capybara (2.17.0)
70
+ rubocop-ast (1.26.0)
71
+ parser (>= 3.2.1.0)
72
+ rubocop-capybara (2.17.1)
73
73
  rubocop (~> 1.41)
74
- rubocop-performance (1.15.2)
74
+ rubocop-performance (1.16.0)
75
75
  rubocop (>= 1.7.0, < 2.0)
76
76
  rubocop-ast (>= 0.4.0)
77
77
  rubocop-rails (2.17.4)
@@ -81,7 +81,7 @@ GEM
81
81
  rubocop-rspec (2.18.1)
82
82
  rubocop (~> 1.33)
83
83
  rubocop-capybara (~> 2.17)
84
- rubocop-vendor (0.8.10)
84
+ rubocop-vendor (0.8.11)
85
85
  rubocop (>= 0.53.0)
86
86
  ruby-progressbar (1.11.0)
87
87
  thor (1.2.1)
@@ -1,5 +1,5 @@
1
1
  module Ws
2
2
  module Style
3
- VERSION = '6.14.4'.freeze
3
+ VERSION = '6.14.5'.freeze
4
4
  end
5
5
  end
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.14.4
4
+ version: 6.14.5
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-02-02 00:00:00.000000000 Z
11
+ date: 2023-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop