ws-style 6.6.1 → 6.6.3
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 +4 -4
- data/.github/workflows/pipeline.yml +8 -1
- data/CHANGELOG.md +6 -0
- data/lib/ws/style/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 43ac7cc95d29bacbf61a562e3b42c8351c14a43aacfe35c334126681b60c22e6
|
|
4
|
+
data.tar.gz: 5ebb79032a460b9e6958d65b58180ebea006790660e71d5f5d288e122e928f0c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8f61c1dd01a81a63377fbeecce6b0ab6239ad2599d5c8a6f1481dafcde07784df008e6b6970bcd06583dd394e3757d03631aced90a14bd6fac053daf81cc1b98
|
|
7
|
+
data.tar.gz: e6f36351210b34603489cae3d6949d2533c1b7857989753a09c5fd809c7539dbde46b8136308b1e8752cef9379ac48d71c0d95723810b4f43eabbd745061dd14
|
|
@@ -22,8 +22,15 @@ jobs:
|
|
|
22
22
|
- name: Release the gem
|
|
23
23
|
if: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' }}
|
|
24
24
|
run: |
|
|
25
|
-
|
|
25
|
+
mkdir -p ~/.gem
|
|
26
|
+
cat << EOF > ~/.gem/credentials
|
|
27
|
+
---
|
|
28
|
+
:github: Bearer ${GITHUB_TOKEN}
|
|
29
|
+
:rubygems_api_key: ${RUBYGEMS_API_KEY}
|
|
30
|
+
EOF
|
|
31
|
+
chmod 0600 ~/.gem/credentials
|
|
26
32
|
git config user.email "noreply@wealthsimple.com"
|
|
33
|
+
git config user.name "Wolfbot"
|
|
27
34
|
bundle exec rake release
|
|
28
35
|
env:
|
|
29
36
|
RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
|
data/CHANGELOG.md
CHANGED
|
@@ -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.6.3 - 2021-03-01
|
|
8
|
+
- One more version bump to get it published
|
|
9
|
+
|
|
10
|
+
## 6.6.2 - 2021-03-01
|
|
11
|
+
- Use GitHub Actions to publish gem
|
|
12
|
+
|
|
7
13
|
## 6.6.1 - 2021-03-01
|
|
8
14
|
- Mostly just trying to get the version number bumped
|
|
9
15
|
|
data/lib/ws/style/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ws-style
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.6.
|
|
4
|
+
version: 6.6.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Graham
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2021-03-01 00:00:00.000000000 Z
|
|
@@ -169,7 +169,7 @@ files:
|
|
|
169
169
|
homepage: https://github.com/wealthsimple/ws-style
|
|
170
170
|
licenses: []
|
|
171
171
|
metadata: {}
|
|
172
|
-
post_install_message:
|
|
172
|
+
post_install_message:
|
|
173
173
|
rdoc_options: []
|
|
174
174
|
require_paths:
|
|
175
175
|
- lib
|
|
@@ -184,9 +184,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
184
184
|
- !ruby/object:Gem::Version
|
|
185
185
|
version: '0'
|
|
186
186
|
requirements: []
|
|
187
|
-
rubyforge_project:
|
|
187
|
+
rubyforge_project:
|
|
188
188
|
rubygems_version: 2.7.6.2
|
|
189
|
-
signing_key:
|
|
189
|
+
signing_key:
|
|
190
190
|
specification_version: 4
|
|
191
191
|
summary: Shared rubocop config
|
|
192
192
|
test_files: []
|