fast_woothee 1.6.5.pre.beta.0 → 1.6.5.pre.beta.1
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/deploy.yml +3 -2
- data/Cargo.lock +1 -1
- data/Cargo.toml +1 -1
- data/fast_woothee.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e52ad36c2109a6c9c7d3b24888e59a8a58dc8a8fb0109c2e977ed0376cc5aff2
|
|
4
|
+
data.tar.gz: e7c0cb2ee8063eae1bbd83022a22d43452140a55122443e69be80c0fac39804b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c77ae0c1d04e6b5f0a07dfae1584f2e4825e114041649424b6e0642a2332435fbe955b69077c93cbc08ecc741d0d23f415e0ce98880428c0bb4d5a112595ebe
|
|
7
|
+
data.tar.gz: cf44f536b1281ace3cc2dd24ed39a42421dedfc6c71f2925d8221d9495906af931281ab00817e1b167d99916cdc5781007d0bc591ef6f6e861b1be887a20e262
|
|
@@ -31,6 +31,7 @@ jobs:
|
|
|
31
31
|
run: |
|
|
32
32
|
gpg --keyserver hkp://pool.sks-keyservers.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB
|
|
33
33
|
curl -sSL https://get.rvm.io | bash -s stable
|
|
34
|
+
source "$HOME/.rvm/scripts/rvm"
|
|
34
35
|
rvm install ${{ matrix.ruby }}
|
|
35
36
|
rvm use ${{ matrix.ruby }} --default
|
|
36
37
|
|
|
@@ -41,14 +42,14 @@ jobs:
|
|
|
41
42
|
|
|
42
43
|
- name: 🥏 Install deps
|
|
43
44
|
run: |
|
|
44
|
-
source
|
|
45
|
+
source "$HOME/.rvm/scripts/rvm"
|
|
45
46
|
gem install bundler
|
|
46
47
|
bundle install --jobs 4 --retry 3
|
|
47
48
|
|
|
48
49
|
- name: 📦 Package it
|
|
49
50
|
id: package
|
|
50
51
|
run: |
|
|
51
|
-
source
|
|
52
|
+
source "$HOME/.rvm/scripts/rvm"
|
|
52
53
|
${{ matrix.static }}
|
|
53
54
|
bundle exec rake thermite:tarball
|
|
54
55
|
echo "::set-output name=tarball::$(echo fast_woothee-*.tar.gz)"
|
data/Cargo.lock
CHANGED
|
@@ -10,7 +10,7 @@ dependencies = [
|
|
|
10
10
|
|
|
11
11
|
[[package]]
|
|
12
12
|
name = "fast_woothee"
|
|
13
|
-
version = "1.6.5-beta.
|
|
13
|
+
version = "1.6.5-beta.1"
|
|
14
14
|
dependencies = [
|
|
15
15
|
"rutie 0.8.1 (git+https://github.com/danielpclark/rutie)",
|
|
16
16
|
"woothee 0.11.0 (git+https://github.com/woothee/woothee-rust)",
|
data/Cargo.toml
CHANGED
data/fast_woothee.gemspec
CHANGED
|
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = 'fast_woothee'
|
|
8
|
-
spec.version = '1.6.5-beta.
|
|
8
|
+
spec.version = '1.6.5-beta.1'
|
|
9
9
|
spec.authors = ['Ian Ker-Seymer']
|
|
10
10
|
spec.email = ['i.kerseymer@gmail.com']
|
|
11
11
|
|