fast_woothee 1.6.0 → 1.6.3.pre.beta.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/deploy.yml +68 -0
- data/.github/workflows/test.yml +43 -0
- data/.tool-versions +1 -0
- data/Cargo.lock +22 -22
- data/Cargo.toml +2 -5
- data/fast_woothee.gemspec +3 -2
- metadata +28 -12
- data/.travis.yml +0 -147
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a3bca8e0a7964a15f5b013d80580eada812428afed4d991703a4d3b6504bdb00
|
4
|
+
data.tar.gz: d100014bd718fdd3e5d03b64d6da5ffd8eb0ca9719b98bcf0008d0816e2ec2df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c4cb7829421407df7035eb371f8c5397e51a3f830bc43a4c91cd3af337e32fabb7b67ad34666facb05b6fba61c207c73bf6e9028f82afd99d041660fea39312
|
7
|
+
data.tar.gz: 7ec3bf4ad47a86ef3d2aafb1cdfd13bff0eff1ea198f7dbce79713a486630bd101a5ccaef2830be08e69a0a602bf12dab6d9a945d6ba7d78e0556f198963c38a
|
@@ -0,0 +1,68 @@
|
|
1
|
+
---
|
2
|
+
name: Deploy
|
3
|
+
|
4
|
+
on:
|
5
|
+
push:
|
6
|
+
# Sequence of patterns matched against refs/tags
|
7
|
+
tags:
|
8
|
+
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
|
9
|
+
|
10
|
+
jobs:
|
11
|
+
build:
|
12
|
+
name: Build and Push to RubyGems
|
13
|
+
strategy:
|
14
|
+
fail-fast: false
|
15
|
+
matrix:
|
16
|
+
os: [macos-latest, ubuntu-latest]
|
17
|
+
ruby: ['2.5', '2.6', '2.7']
|
18
|
+
static: ['unset RUBY_STATIC']
|
19
|
+
runs-on: ${{ matrix.os }}
|
20
|
+
|
21
|
+
steps:
|
22
|
+
- uses: actions/checkout@v2
|
23
|
+
|
24
|
+
- name: Set up Ruby ${{ matrix.ruby }}
|
25
|
+
uses: ruby/setup-ruby@v1
|
26
|
+
with:
|
27
|
+
version: $${{ matrix.ruby }}
|
28
|
+
|
29
|
+
- name: Install Rust
|
30
|
+
uses: actions-rs/toolchain@v1
|
31
|
+
with:
|
32
|
+
toolchain: stable
|
33
|
+
|
34
|
+
- name: 🥏 Install deps
|
35
|
+
run: |
|
36
|
+
gem install bundler
|
37
|
+
bundle install --jobs 4 --retry 3
|
38
|
+
|
39
|
+
- name: 📦 Package it
|
40
|
+
id: package
|
41
|
+
run: |
|
42
|
+
${{ matrix.static }}
|
43
|
+
bundle exec rake thermite:tarball
|
44
|
+
echo "::set-output name=tarball::$(echo fast_woothee-*.tar.gz)"
|
45
|
+
|
46
|
+
- name: Create Release
|
47
|
+
id: create_release
|
48
|
+
uses: actions/create-release@v1
|
49
|
+
continue-on-error: true
|
50
|
+
env:
|
51
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
|
52
|
+
with:
|
53
|
+
tag_name: ${{ github.ref }}
|
54
|
+
release_name: ${{ github.ref }}
|
55
|
+
draft: false
|
56
|
+
prerelease: false
|
57
|
+
|
58
|
+
- name: Upload Release Asset
|
59
|
+
id: upload-release-asset
|
60
|
+
uses: actions/upload-release-asset@v1
|
61
|
+
env:
|
62
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
63
|
+
if: always()
|
64
|
+
with:
|
65
|
+
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
66
|
+
asset_path: ${{ steps.package.outputs.tarball }}
|
67
|
+
asset_name: ${{ steps.package.outputs.tarball }}
|
68
|
+
asset_content_type: application/x-gzip
|
@@ -0,0 +1,43 @@
|
|
1
|
+
---
|
2
|
+
name: Test
|
3
|
+
|
4
|
+
on: [push]
|
5
|
+
|
6
|
+
jobs:
|
7
|
+
build:
|
8
|
+
strategy:
|
9
|
+
fail-fast: false
|
10
|
+
matrix:
|
11
|
+
os: [macos-latest, ubuntu-latest]
|
12
|
+
ruby: ['2.5', '2.6', '2.7']
|
13
|
+
runs-on: ${{ matrix.os }}
|
14
|
+
steps:
|
15
|
+
- uses: actions/checkout@v2
|
16
|
+
with:
|
17
|
+
submodules: true
|
18
|
+
|
19
|
+
- name: 💎 Set up Ruby ${{ matrix.ruby }}
|
20
|
+
uses: ruby/setup-ruby@v1
|
21
|
+
with:
|
22
|
+
ruby-version: ${{ matrix.ruby }}
|
23
|
+
|
24
|
+
- name: Install Rust
|
25
|
+
uses: actions-rs/toolchain@v1
|
26
|
+
with:
|
27
|
+
toolchain: stable
|
28
|
+
|
29
|
+
- name: 🥏 Install deps
|
30
|
+
run: |
|
31
|
+
gem install bundler
|
32
|
+
bundle install --jobs 4 --retry 3
|
33
|
+
|
34
|
+
- name: 📝 Run specs
|
35
|
+
run: |
|
36
|
+
gem install bundler
|
37
|
+
bundle install --jobs 4 --retry 3
|
38
|
+
bundle exec rake spec
|
39
|
+
|
40
|
+
- name: 📦 Package it
|
41
|
+
run: |
|
42
|
+
bundle exec rake thermite:tarball
|
43
|
+
bundle exec rake install
|
data/.tool-versions
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby 2.7.1
|
data/Cargo.lock
CHANGED
@@ -2,17 +2,17 @@
|
|
2
2
|
# It is not intended for manual editing.
|
3
3
|
[[package]]
|
4
4
|
name = "aho-corasick"
|
5
|
-
version = "0.7.
|
5
|
+
version = "0.7.14"
|
6
6
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
7
7
|
dependencies = [
|
8
|
-
"memchr 2.3.
|
8
|
+
"memchr 2.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
9
9
|
]
|
10
10
|
|
11
11
|
[[package]]
|
12
12
|
name = "fast_woothee"
|
13
|
-
version = "1.6.
|
13
|
+
version = "1.6.3-beta.7"
|
14
14
|
dependencies = [
|
15
|
-
"rutie 0.
|
15
|
+
"rutie 0.8.1 (git+https://github.com/danielpclark/rutie)",
|
16
16
|
"woothee 0.11.0 (git+https://github.com/woothee/woothee-rust)",
|
17
17
|
]
|
18
18
|
|
@@ -23,37 +23,37 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
23
23
|
|
24
24
|
[[package]]
|
25
25
|
name = "libc"
|
26
|
-
version = "0.2.
|
26
|
+
version = "0.2.80"
|
27
27
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
28
28
|
|
29
29
|
[[package]]
|
30
30
|
name = "memchr"
|
31
|
-
version = "2.3.
|
31
|
+
version = "2.3.4"
|
32
32
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
33
33
|
|
34
34
|
[[package]]
|
35
35
|
name = "regex"
|
36
|
-
version = "1.
|
36
|
+
version = "1.4.1"
|
37
37
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
38
38
|
dependencies = [
|
39
|
-
"aho-corasick 0.7.
|
40
|
-
"memchr 2.3.
|
41
|
-
"regex-syntax 0.6.
|
39
|
+
"aho-corasick 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
40
|
+
"memchr 2.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
41
|
+
"regex-syntax 0.6.20 (registry+https://github.com/rust-lang/crates.io-index)",
|
42
42
|
"thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
43
43
|
]
|
44
44
|
|
45
45
|
[[package]]
|
46
46
|
name = "regex-syntax"
|
47
|
-
version = "0.6.
|
47
|
+
version = "0.6.20"
|
48
48
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
49
49
|
|
50
50
|
[[package]]
|
51
51
|
name = "rutie"
|
52
|
-
version = "0.
|
53
|
-
source = "git+https://github.com/danielpclark/rutie#
|
52
|
+
version = "0.8.1"
|
53
|
+
source = "git+https://github.com/danielpclark/rutie#1e59f3751a5f2a841b18dbdd1f9f90cf1c993c17"
|
54
54
|
dependencies = [
|
55
55
|
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
56
|
-
"libc 0.2.
|
56
|
+
"libc 0.2.80 (registry+https://github.com/rust-lang/crates.io-index)",
|
57
57
|
]
|
58
58
|
|
59
59
|
[[package]]
|
@@ -67,19 +67,19 @@ dependencies = [
|
|
67
67
|
[[package]]
|
68
68
|
name = "woothee"
|
69
69
|
version = "0.11.0"
|
70
|
-
source = "git+https://github.com/woothee/woothee-rust#
|
70
|
+
source = "git+https://github.com/woothee/woothee-rust#3d6536fd67f3c7dda3f81f3b2e60a4187758ec61"
|
71
71
|
dependencies = [
|
72
72
|
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
73
|
-
"regex 1.
|
73
|
+
"regex 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
74
74
|
]
|
75
75
|
|
76
76
|
[metadata]
|
77
|
-
"checksum aho-corasick 0.7.
|
77
|
+
"checksum aho-corasick 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)" = "b476ce7103678b0c6d3d395dbbae31d48ff910bd28be979ba5d48c6351131d0d"
|
78
78
|
"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
79
|
-
"checksum libc 0.2.
|
80
|
-
"checksum memchr 2.3.
|
81
|
-
"checksum regex 1.
|
82
|
-
"checksum regex-syntax 0.6.
|
83
|
-
"checksum rutie 0.
|
79
|
+
"checksum libc 0.2.80 (registry+https://github.com/rust-lang/crates.io-index)" = "4d58d1b70b004888f764dfbf6a26a3b0342a1632d33968e4a179d8011c760614"
|
80
|
+
"checksum memchr 2.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
|
81
|
+
"checksum regex 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8963b85b8ce3074fecffde43b4b0dded83ce2f367dc8d363afc56679f3ee820b"
|
82
|
+
"checksum regex-syntax 0.6.20 (registry+https://github.com/rust-lang/crates.io-index)" = "8cab7a364d15cde1e505267766a2d3c4e22a843e1a601f0fa7564c0f82ced11c"
|
83
|
+
"checksum rutie 0.8.1 (git+https://github.com/danielpclark/rutie)" = "<none>"
|
84
84
|
"checksum thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
|
85
85
|
"checksum woothee 0.11.0 (git+https://github.com/woothee/woothee-rust)" = "<none>"
|
data/Cargo.toml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
[package]
|
2
2
|
name = "fast_woothee"
|
3
|
-
version = "1.6.
|
3
|
+
version = "1.6.3-beta.7"
|
4
4
|
authors = ["Ian Ker-Seymer <i.kerseymer@gmail.com>"]
|
5
5
|
repository = "https://github.com/ianks/fast_woothee"
|
6
6
|
publish = false
|
@@ -10,10 +10,7 @@ crate-type = ["dylib"]
|
|
10
10
|
|
11
11
|
[dependencies]
|
12
12
|
woothee = { git = "https://github.com/woothee/woothee-rust" }
|
13
|
-
rutie = {
|
14
|
-
|
15
|
-
[patch.crates-io]
|
16
|
-
rutie = { git = "https://github.com/danielpclark/rutie", branch = "master" }
|
13
|
+
rutie = { git = "https://github.com/danielpclark/rutie", feature = ["no-link"] }
|
17
14
|
|
18
15
|
[package.metadata.thermite]
|
19
16
|
github_releases = true
|
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.
|
8
|
+
spec.version = '1.6.3-beta.7'
|
9
9
|
spec.authors = ['Ian Ker-Seymer']
|
10
10
|
spec.email = ['i.kerseymer@gmail.com']
|
11
11
|
|
@@ -22,7 +22,8 @@ Gem::Specification.new do |spec|
|
|
22
22
|
spec.require_paths = ['lib']
|
23
23
|
spec.extensions = ['Rakefile']
|
24
24
|
|
25
|
-
spec.
|
25
|
+
spec.add_dependency 'thermite'
|
26
|
+
spec.add_dependency 'rexml'
|
26
27
|
|
27
28
|
spec.add_development_dependency 'bundler', '~> 2.0'
|
28
29
|
spec.add_development_dependency 'ffi', '~> 1.9'
|
metadata
CHANGED
@@ -1,29 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fast_woothee
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.3.pre.beta.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ian Ker-Seymer
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thermite
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0
|
19
|
+
version: '0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rexml
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: bundler
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -130,11 +144,13 @@ extensions:
|
|
130
144
|
- Rakefile
|
131
145
|
extra_rdoc_files: []
|
132
146
|
files:
|
147
|
+
- ".github/workflows/deploy.yml"
|
148
|
+
- ".github/workflows/test.yml"
|
133
149
|
- ".gitignore"
|
134
150
|
- ".gitmodules"
|
135
151
|
- ".rspec"
|
136
152
|
- ".ruby-version"
|
137
|
-
- ".
|
153
|
+
- ".tool-versions"
|
138
154
|
- Cargo.lock
|
139
155
|
- Cargo.toml
|
140
156
|
- Gemfile
|
@@ -148,7 +164,7 @@ files:
|
|
148
164
|
homepage: https://github.com/ianks/fast_woothee
|
149
165
|
licenses: []
|
150
166
|
metadata: {}
|
151
|
-
post_install_message:
|
167
|
+
post_install_message:
|
152
168
|
rdoc_options: []
|
153
169
|
require_paths:
|
154
170
|
- lib
|
@@ -159,12 +175,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
159
175
|
version: '0'
|
160
176
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
161
177
|
requirements:
|
162
|
-
- - "
|
178
|
+
- - ">"
|
163
179
|
- !ruby/object:Gem::Version
|
164
|
-
version:
|
180
|
+
version: 1.3.1
|
165
181
|
requirements: []
|
166
182
|
rubygems_version: 3.1.2
|
167
|
-
signing_key:
|
183
|
+
signing_key:
|
168
184
|
specification_version: 4
|
169
185
|
summary: Ruby bindings for woothee-rust
|
170
186
|
test_files: []
|
data/.travis.yml
DELETED
@@ -1,147 +0,0 @@
|
|
1
|
-
---
|
2
|
-
sudo: false
|
3
|
-
language: rust
|
4
|
-
os:
|
5
|
-
- linux
|
6
|
-
- osx
|
7
|
-
dist: trusty
|
8
|
-
osx_image: xcode9.2
|
9
|
-
rust: stable
|
10
|
-
env:
|
11
|
-
global:
|
12
|
-
- THERMITE_DEBUG_FILENAME: /tmp/thermite-debug.log
|
13
|
-
matrix:
|
14
|
-
- FWOOTHEE_RUBY_VERSION: 2.4.6
|
15
|
-
- FWOOTHEE_RUBY_VERSION: 2.5.2
|
16
|
-
- FWOOTHEE_RUBY_VERSION: 2.6.6
|
17
|
-
- FWOOTHEE_RUBY_VERSION: 2.7.1
|
18
|
-
|
19
|
-
matrix:
|
20
|
-
include:
|
21
|
-
- os: linux
|
22
|
-
dist: trusty
|
23
|
-
env: FWOOTHEE_RUBY_VERSION=2.7.1 RUBY_STATIC=1
|
24
|
-
- os: linux
|
25
|
-
dist: trusty
|
26
|
-
env: FWOOTHEE_RUBY_VERSION=2.6.6 RUBY_STATIC=1
|
27
|
-
- os: linux
|
28
|
-
dist: trusty
|
29
|
-
env: FWOOTHEE_RUBY_VERSION=2.4.6 RUBY_STATIC=1
|
30
|
-
- os: linux
|
31
|
-
dist: trusty
|
32
|
-
env: FWOOTHEE_RUBY_VERSION=2.5.2 RUBY_STATIC=1
|
33
|
-
- os: osx
|
34
|
-
osx_image: xcode8
|
35
|
-
env: FWOOTHEE_RUBY_VERSION=2.6.6
|
36
|
-
- os: osx
|
37
|
-
osx_image: xcode9.3beta
|
38
|
-
env: FWOOTHEE_RUBY_VERSION=2.6.6
|
39
|
-
- os: osx
|
40
|
-
osx_image: xcode8
|
41
|
-
env: FWOOTHEE_RUBY_VERSION=2.6.6 RUBY_STATIC=1
|
42
|
-
- os: osx
|
43
|
-
osx_image: xcode9.2
|
44
|
-
env: FWOOTHEE_RUBY_VERSION=2.6.6 RUBY_STATIC=1
|
45
|
-
- os: osx
|
46
|
-
osx_image: xcode9.3beta
|
47
|
-
env: FWOOTHEE_RUBY_VERSION=2.6.6 RUBY_STATIC=1
|
48
|
-
- os: osx
|
49
|
-
osx_image: xcode8
|
50
|
-
env: FWOOTHEE_RUBY_VERSION=2.4.6
|
51
|
-
- os: osx
|
52
|
-
osx_image: xcode9.3beta
|
53
|
-
env: FWOOTHEE_RUBY_VERSION=2.4.6
|
54
|
-
- os: osx
|
55
|
-
osx_image: xcode8
|
56
|
-
env: FWOOTHEE_RUBY_VERSION=2.4.6 RUBY_STATIC=1
|
57
|
-
- os: osx
|
58
|
-
osx_image: xcode9.2
|
59
|
-
env: FWOOTHEE_RUBY_VERSION=2.4.6 RUBY_STATIC=1
|
60
|
-
- os: osx
|
61
|
-
osx_image: xcode9.3beta
|
62
|
-
env: FWOOTHEE_RUBY_VERSION=2.4.6 RUBY_STATIC=1
|
63
|
-
- os: osx
|
64
|
-
osx_image: xcode8
|
65
|
-
env: FWOOTHEE_RUBY_VERSION=2.5.2
|
66
|
-
- os: osx
|
67
|
-
osx_image: xcode9.3beta
|
68
|
-
env: FWOOTHEE_RUBY_VERSION=2.5.2
|
69
|
-
- os: osx
|
70
|
-
osx_image: xcode8
|
71
|
-
env: FWOOTHEE_RUBY_VERSION=2.5.2 RUBY_STATIC=1
|
72
|
-
- os: osx
|
73
|
-
osx_image: xcode9.2
|
74
|
-
env: FWOOTHEE_RUBY_VERSION=2.5.2 RUBY_STATIC=1
|
75
|
-
- os: osx
|
76
|
-
osx_image: xcode9.3beta
|
77
|
-
env: FWOOTHEE_RUBY_VERSION=2.5.2 RUBY_STATIC=1
|
78
|
-
- os: osx
|
79
|
-
osx_image: xcode8
|
80
|
-
env: FWOOTHEE_RUBY_VERSION=2.7.1
|
81
|
-
- os: osx
|
82
|
-
osx_image: xcode9.3beta
|
83
|
-
env: FWOOTHEE_RUBY_VERSION=2.7.1
|
84
|
-
- os: osx
|
85
|
-
osx_image: xcode8
|
86
|
-
env: FWOOTHEE_RUBY_VERSION=2.7.1 RUBY_STATIC=1
|
87
|
-
- os: osx
|
88
|
-
osx_image: xcode9.2
|
89
|
-
env: FWOOTHEE_RUBY_VERSION=2.7.1 RUBY_STATIC=1
|
90
|
-
- os: osx
|
91
|
-
osx_image: xcode9.3beta
|
92
|
-
env: FWOOTHEE_RUBY_VERSION=2.7.1 RUBY_STATIC=1
|
93
|
-
|
94
|
-
cache:
|
95
|
-
cargo: true
|
96
|
-
directories:
|
97
|
-
- $TRAVIS_BUILD_DIR/vendor/bundle
|
98
|
-
|
99
|
-
before_install:
|
100
|
-
- |
|
101
|
-
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
102
|
-
brew update
|
103
|
-
fi
|
104
|
-
rvm install "$FWOOTHEE_RUBY_VERSION"
|
105
|
-
rvm use "$FWOOTHEE_RUBY_VERSION"
|
106
|
-
ruby --version
|
107
|
-
- gem update --system
|
108
|
-
- gem install bundler
|
109
|
-
- bundle install --jobs=3 --retry=3 --path=$TRAVIS_BUILD_DIR/vendor/bundle
|
110
|
-
|
111
|
-
script:
|
112
|
-
- bundle exec rake spec
|
113
|
-
- bundle exec rake thermite:tarball
|
114
|
-
- bundle exec rake install
|
115
|
-
# - |
|
116
|
-
# if [[ -z "$TRAVIS_TAG" ]]; then
|
117
|
-
# gem uninstall fast_woothee
|
118
|
-
# CARGO=fake bundle exec rake install
|
119
|
-
# fi
|
120
|
-
# - |
|
121
|
-
# if [[ -z "$TRAVIS_TAG" ]]; then
|
122
|
-
# gem uninstall fast_woothee
|
123
|
-
# CARGO=fake gem install pkg/*.gem
|
124
|
-
# bundle exec rake spec
|
125
|
-
# fi
|
126
|
-
- if [[ -f "$THERMITE_DEBUG_FILENAME" ]]; then cat $THERMITE_DEBUG_FILENAME; fi
|
127
|
-
|
128
|
-
deploy:
|
129
|
-
- provider: releases
|
130
|
-
api_key:
|
131
|
-
secure: Dy3Ljq0N023aRdLbJOGB9zp7+JNlN0w4Bg07OKOBj6RSGWjSgzTQbHT5xY2ZRaSeo0gmgiSxjePdo0GL4k3hL3k7SiHBwE17dUHURYY9PV+Cszy8ygV1Jqr5z7KUmSJrmBEZ9rK/Dg9ZJgsMVHfLZZJYM5QYxAwWrPhXdTFQltZB/b6PwEID7/kyug+jWo8DqH4iyoqLEyNPB8LdS/ksqg/VvMAWNvHlnDlvHTO5Cq1BAzvtzxxY5GjOfhzBGuPLYjeQZiEJ4Ljcg3JJSU3W2rU7El3Yew2PCnV1U5AdUdG0Lm9TecUQ+WK7Zfz/dSsOdzQWWp1x37BqnNmPh9KQqrhP18X795foKm6wDWcEs6ABq5uxmWtDN9/x5l2t8OY5VmqlfoBgyntISpOIXxJB2PA/hJGiw5tMAXNw6jUonG5xYa93Av+NopcC5FJd+NQRv6knTPEtRS5ZY8XY2fNldIqY2vRGlpOmk8EQDnbsPbyqH9dDc7eJWSPZV3FEdgxTUe5EbGUvO47jWZFhRe2aj/9y/uy6yTLNTvO9B1zoC2/MGq9Y3/Tacd9Stf8LTWnze11Y3SQT/xhFm+QMk10N7aHT58KwLYlC+rcH76C2w7avGAX0rEpkVg3iIMCL246O9iWktxwHkmjXlF04ME4wO9VzGYUva6tQt6wIxle6Z+s=
|
132
|
-
file: fast_woothee-*.tar.gz
|
133
|
-
file_glob: true
|
134
|
-
skip_cleanup: true
|
135
|
-
on:
|
136
|
-
repo: ianks/fast_woothee
|
137
|
-
branch: master
|
138
|
-
tags: true
|
139
|
-
|
140
|
-
- provider: rubygems
|
141
|
-
api_key:
|
142
|
-
secure: ffojlgGkfjcxCHf5kW7sfDB2I+K2g/YvqzIz/sOaTHcTbYjIVJHzgYkIXqqsqdGOFe8zSS/wi6Ax6N7fEqmSdanL9+U552/5Lodgoj0GdulV1dGeDt8Q71t+RJ2rbK5xdIkXcMcA0HL5LW7eQ6pzIjXryJ5Ro+sBGY8ZqCPtEal6mmUh3c8rXZICxmR69Z6IAhX2hipQIQ258ZzzWVoWjSYez7eSWtjMjrXqPokqfVmJRF26lQJdUO0UPdp6wsfY4a6Xxms/PUXimTas7WusgCPtHb4ygHJY5iRTjFQX/fDwnynDF3GlNfXufIn1qF6b9Hq10yDN3SHIdeIDrDmXJqnbqaWmyKzeorEonGX/GzXO8qaTS5zwuYjDYwpBQ266HPdFR82uPY+dDiJk+k3lTs3NBq+FHmzWUm1bFAKkzzsu8CytCKsl6SOuXWzuhwBWWNh82N3aGcAzhVz8dzcugWNCnt0SqjfyhuaeW+bgvQ7XmHE20Ocea8DD66fP8S5r2gb3NWBhwe4l5cd9eHGbekgyF4ZIIU4Sj8QuMW7M5dHU9gp+ZJkCJnREtrH1JSLILSoNJkd1dy75AofrK+GmpkVzbPmcZzet5g6Be5F32zQ/WRe1ZR1ytebUUr37FOCePWHgRmqGNYQ4ui+UBUHxjgJBxr+8Z8efLG/ZzJ4YxEo=
|
143
|
-
gem: fast_woothee
|
144
|
-
on:
|
145
|
-
repo: ianks/fast_woothee
|
146
|
-
branch: master
|
147
|
-
tags: true
|