ws-style 6.9.0 → 6.9.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/pipeline.yml +3 -2
- data/.gitignore +0 -1
- data/CHANGELOG.md +14 -0
- data/Gemfile.lock +100 -0
- data/README.md +3 -2
- data/lib/ws/style/version.rb +1 -1
- data/ws-style.gemspec +2 -0
- metadata +31 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a82a5f2adb707152586aeab841673b82c28dcf9dffcc22b63356be1a0903bdc4
|
4
|
+
data.tar.gz: eec5320c4601a068e5a50b76aac8c7c687b68e62601133bc3cae09ff2f47c597
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 882ab6391e21ad9143bbf5fb00dd9966b6cf9082211b5d5e1fddf07f1747c33d41ad023bbfbb18510ca7c735f07518ad94a22ef926051bfb51a26bec3fbdd4db
|
7
|
+
data.tar.gz: 441b68987af57786e1ce33f67842d5c8ad17180d8b87af5334b420c2dd53b1bdc0e22826d9dde7439e9e3d91d2130a9cb7678c7ef00b490ef8c23584c4ec304f
|
@@ -12,8 +12,9 @@ jobs:
|
|
12
12
|
ref: ${{ github.event.pull_request.head.sha }}
|
13
13
|
- uses: ruby/setup-ruby@v1
|
14
14
|
with:
|
15
|
-
ruby-version: 2.7.2
|
16
15
|
bundler-cache: true
|
16
|
+
- name: Fetch main branch
|
17
|
+
run: git fetch origin main
|
17
18
|
- uses: r7kamura/rubocop-problem-matchers-action@v1
|
18
19
|
- uses: wealthsimple/toolbox-script@main
|
19
20
|
name: RuboCop
|
@@ -22,7 +23,7 @@ jobs:
|
|
22
23
|
- name: Run rspec
|
23
24
|
run: bundle exec rspec
|
24
25
|
- name: Release the gem
|
25
|
-
if: ${{ github.ref == 'refs/heads/main'
|
26
|
+
if: ${{ github.ref == 'refs/heads/main' }}
|
26
27
|
run: |
|
27
28
|
mkdir -p ~/.gem
|
28
29
|
cat << EOF > ~/.gem/credentials
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,20 @@ 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.9.4 - 2021-07-20
|
8
|
+
- Upgraded dependencies
|
9
|
+
|
10
|
+
## 6.9.3 - 2021-07-20
|
11
|
+
- Upgraded rubocop to 1.18.2
|
12
|
+
- Upgraded rubocop-rais to 2.11.2
|
13
|
+
|
14
|
+
## 6.9.2 - 2021-06-28
|
15
|
+
- Update dependencies
|
16
|
+
|
17
|
+
## 6.9.1 - 2021-05-06
|
18
|
+
- Migrate CI from CircleCI to GitHub Actions
|
19
|
+
- Change default GitHub branch to `main`
|
20
|
+
|
7
21
|
## 6.9.0 - 2021-04-06
|
8
22
|
- Upgraded rubocop to 1.12.1
|
9
23
|
- Upgraded rubocop-performance to 1.10.2
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
ws-style (6.9.4)
|
5
|
+
rubocop (>= 1.12.1)
|
6
|
+
rubocop-performance (>= 1.10.2)
|
7
|
+
rubocop-rails (>= 2.9.1)
|
8
|
+
rubocop-rspec (>= 2.2.0)
|
9
|
+
rubocop-vendor (>= 0.6.0)
|
10
|
+
|
11
|
+
GEM
|
12
|
+
remote: https://rubygems.org/
|
13
|
+
specs:
|
14
|
+
activesupport (6.1.4)
|
15
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
16
|
+
i18n (>= 1.6, < 2)
|
17
|
+
minitest (>= 5.1)
|
18
|
+
tzinfo (~> 2.0)
|
19
|
+
zeitwerk (~> 2.3)
|
20
|
+
ast (2.4.2)
|
21
|
+
bundler-audit (0.7.0.1)
|
22
|
+
bundler (>= 1.2.0, < 3)
|
23
|
+
thor (>= 0.18, < 2)
|
24
|
+
concurrent-ruby (1.1.9)
|
25
|
+
diff-lcs (1.4.4)
|
26
|
+
git (1.9.1)
|
27
|
+
rchardet (~> 1.8)
|
28
|
+
i18n (1.8.10)
|
29
|
+
concurrent-ruby (~> 1.0)
|
30
|
+
json (2.5.1)
|
31
|
+
keepachangelog (0.6.1)
|
32
|
+
json (~> 2.1)
|
33
|
+
thor (~> 0.20)
|
34
|
+
minitest (5.14.4)
|
35
|
+
parallel (1.20.1)
|
36
|
+
parser (3.0.2.0)
|
37
|
+
ast (~> 2.4.1)
|
38
|
+
rack (2.2.3)
|
39
|
+
rainbow (3.0.0)
|
40
|
+
rake (13.0.6)
|
41
|
+
rchardet (1.8.0)
|
42
|
+
regexp_parser (2.1.1)
|
43
|
+
rexml (3.2.5)
|
44
|
+
rspec (3.10.0)
|
45
|
+
rspec-core (~> 3.10.0)
|
46
|
+
rspec-expectations (~> 3.10.0)
|
47
|
+
rspec-mocks (~> 3.10.0)
|
48
|
+
rspec-core (3.10.1)
|
49
|
+
rspec-support (~> 3.10.0)
|
50
|
+
rspec-expectations (3.10.1)
|
51
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
52
|
+
rspec-support (~> 3.10.0)
|
53
|
+
rspec-mocks (3.10.2)
|
54
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
55
|
+
rspec-support (~> 3.10.0)
|
56
|
+
rspec-support (3.10.2)
|
57
|
+
rubocop (1.18.3)
|
58
|
+
parallel (~> 1.10)
|
59
|
+
parser (>= 3.0.0.0)
|
60
|
+
rainbow (>= 2.2.2, < 4.0)
|
61
|
+
regexp_parser (>= 1.8, < 3.0)
|
62
|
+
rexml
|
63
|
+
rubocop-ast (>= 1.7.0, < 2.0)
|
64
|
+
ruby-progressbar (~> 1.7)
|
65
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
66
|
+
rubocop-ast (1.8.0)
|
67
|
+
parser (>= 3.0.1.1)
|
68
|
+
rubocop-performance (1.11.4)
|
69
|
+
rubocop (>= 1.7.0, < 2.0)
|
70
|
+
rubocop-ast (>= 0.4.0)
|
71
|
+
rubocop-rails (2.11.3)
|
72
|
+
activesupport (>= 4.2.0)
|
73
|
+
rack (>= 1.1)
|
74
|
+
rubocop (>= 1.7.0, < 2.0)
|
75
|
+
rubocop-rspec (2.4.0)
|
76
|
+
rubocop (~> 1.0)
|
77
|
+
rubocop-ast (>= 1.1.0)
|
78
|
+
rubocop-vendor (0.6.1)
|
79
|
+
rubocop (>= 0.53.0)
|
80
|
+
ruby-progressbar (1.11.0)
|
81
|
+
thor (0.20.3)
|
82
|
+
tzinfo (2.0.4)
|
83
|
+
concurrent-ruby (~> 1.0)
|
84
|
+
unicode-display_width (2.0.0)
|
85
|
+
zeitwerk (2.4.2)
|
86
|
+
|
87
|
+
PLATFORMS
|
88
|
+
ruby
|
89
|
+
|
90
|
+
DEPENDENCIES
|
91
|
+
bundler
|
92
|
+
bundler-audit
|
93
|
+
git
|
94
|
+
keepachangelog
|
95
|
+
rake
|
96
|
+
rspec (~> 3.10.0)
|
97
|
+
ws-style!
|
98
|
+
|
99
|
+
BUNDLED WITH
|
100
|
+
2.2.16
|
data/README.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
# ws-style
|
1
|
+
# ws-style
|
2
|
+
[![Github Actions Badge](https://github.com/wealthsimple/ws-style/actions/workflows/pipeline.yml/badge.svg)](https://github.com/wealthsimple/ws-style/actions)
|
2
3
|
|
3
4
|
Shared [rubocop](https://github.com/bbatsov/rubocop) config to enforce Ruby style consistently across Wealthsimple libraries and services.
|
4
5
|
|
@@ -73,4 +74,4 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
73
74
|
|
74
75
|
To install this gem onto your local machine, run `bundle exec rake install`.
|
75
76
|
|
76
|
-
New versions are automatically released by CI when merged to `
|
77
|
+
New versions are automatically released by CI when merged to `main`.
|
data/lib/ws/style/version.rb
CHANGED
data/ws-style.gemspec
CHANGED
@@ -30,6 +30,8 @@ Gem::Specification.new do |s|
|
|
30
30
|
|
31
31
|
s.add_development_dependency 'bundler'
|
32
32
|
s.add_development_dependency 'bundler-audit'
|
33
|
+
s.add_development_dependency 'git'
|
34
|
+
s.add_development_dependency 'keepachangelog'
|
33
35
|
s.add_development_dependency 'rake'
|
34
36
|
s.add_development_dependency 'rspec', '~> 3.10.0'
|
35
37
|
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.9.
|
4
|
+
version: 6.9.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Graham
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-07-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -108,6 +108,34 @@ dependencies:
|
|
108
108
|
- - ">="
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: git
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: keepachangelog
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
111
139
|
- !ruby/object:Gem::Dependency
|
112
140
|
name: rake
|
113
141
|
requirement: !ruby/object:Gem::Requirement
|
@@ -153,6 +181,7 @@ files:
|
|
153
181
|
- ".ruby-version"
|
154
182
|
- CHANGELOG.md
|
155
183
|
- Gemfile
|
184
|
+
- Gemfile.lock
|
156
185
|
- README.md
|
157
186
|
- Rakefile
|
158
187
|
- bin/console
|