fast_woothee 1.6.5.pre.beta.1 → 1.6.5.pre.beta.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e52ad36c2109a6c9c7d3b24888e59a8a58dc8a8fb0109c2e977ed0376cc5aff2
4
- data.tar.gz: e7c0cb2ee8063eae1bbd83022a22d43452140a55122443e69be80c0fac39804b
3
+ metadata.gz: 1800e2a5498dd2a542608c38f63d0a59c75bc8f15a93e3e5bc552799db4e151d
4
+ data.tar.gz: 884568557d652b2fc298f7c91ddecb35fd5eb79c0a6485431fb8b0b9a819602b
5
5
  SHA512:
6
- metadata.gz: 5c77ae0c1d04e6b5f0a07dfae1584f2e4825e114041649424b6e0642a2332435fbe955b69077c93cbc08ecc741d0d23f415e0ce98880428c0bb4d5a112595ebe
7
- data.tar.gz: cf44f536b1281ace3cc2dd24ed39a42421dedfc6c71f2925d8221d9495906af931281ab00817e1b167d99916cdc5781007d0bc591ef6f6e861b1be887a20e262
6
+ metadata.gz: 5cc62638bd060aa2c3f8b0020e8cb6c045d94a03b7e78babdcd2e733e92008f18ffe37f808976a5443b42399aa597947d400bda00f85b6c3b7d88aaa699c29e2
7
+ data.tar.gz: 4b6a19094dec823b6f0d8a008ef9b33151c439ba886eda27db782067caacb28162231bb5b0f7ea31d14117a825c22f1b7abc60b7e5df2efd182d0956cd00a519
@@ -13,7 +13,7 @@ jobs:
13
13
  matrix:
14
14
  os: [macos-latest, ubuntu-latest]
15
15
  ruby: ['2.5', '2.6', '2.7']
16
- static: ['unset RUBY_STATIC', 'export RUBY_STATIC=1']
16
+ static: ['0', '1']
17
17
  runs-on: ${{ matrix.os }}
18
18
 
19
19
  steps:
@@ -23,18 +23,27 @@ jobs:
23
23
  if: ${{ matrix.os == 'ubuntu-latest' }}
24
24
  run: sudo apt-get -yqq install curl gpg
25
25
 
26
- # - name: Install dependencies (system)
27
- # if: ${{ matrix.os == 'macos-latest' }}
28
- # run: brew install curl
26
+ - name: Install RVM
27
+ run: |
28
+ curl -sSL https://rvm.io/mpapis.asc | gpg --import -
29
+ curl -sSL https://rvm.io/pkuczynski.asc | gpg --import -
30
+ curl -sSL https://get.rvm.io | bash -s stable
29
31
 
30
32
  - name: Set up Ruby ${{ matrix.ruby }}
33
+ if: ${{ matrix.static == '0' }}
31
34
  run: |
32
- gpg --keyserver hkp://pool.sks-keyservers.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB
33
- curl -sSL https://get.rvm.io | bash -s stable
34
35
  source "$HOME/.rvm/scripts/rvm"
35
36
  rvm install ${{ matrix.ruby }}
36
37
  rvm use ${{ matrix.ruby }} --default
37
38
 
39
+ - name: Set up Ruby ${{ matrix.ruby }}
40
+ if: ${{ matrix.static == '1' }}
41
+ run: |
42
+ source "$HOME/.rvm/scripts/rvm"
43
+ rvm install --static ${{ matrix.ruby }}
44
+ rvm use ${{ matrix.ruby }} --default
45
+ echo "RUBY_STATIC=1" >> $GITHUB_ENV
46
+
38
47
  - name: Install Rust
39
48
  uses: actions-rs/toolchain@v1
40
49
  with:
@@ -50,7 +59,6 @@ jobs:
50
59
  id: package
51
60
  run: |
52
61
  source "$HOME/.rvm/scripts/rvm"
53
- ${{ matrix.static }}
54
62
  bundle exec rake thermite:tarball
55
63
  echo "::set-output name=tarball::$(echo fast_woothee-*.tar.gz)"
56
64
 
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.1"
13
+ version = "1.6.5-beta.2"
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
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "fast_woothee"
3
- version = "1.6.5-beta.1"
3
+ version = "1.6.5-beta.2"
4
4
  authors = ["Ian Ker-Seymer <i.kerseymer@gmail.com>"]
5
5
  repository = "https://github.com/ianks/fast_woothee"
6
6
  publish = false
@@ -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.1'
8
+ spec.version = '1.6.5-beta.2'
9
9
  spec.authors = ['Ian Ker-Seymer']
10
10
  spec.email = ['i.kerseymer@gmail.com']
11
11
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fast_woothee
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.5.pre.beta.1
4
+ version: 1.6.5.pre.beta.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Ker-Seymer