is_it_done_yet 0.5.0 → 0.6.0
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/ruby.yml +33 -0
- data/CHANGELOG.md +9 -0
- data/Gemfile.lock +15 -13
- data/lib/is_it_done_yet/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3370c312f841a7cb85eacf8a0f52945c3cd662dce2e45788d3c9e60908866ae0
|
|
4
|
+
data.tar.gz: 481779c28ea71076b0c9dd9ffb902d53bf9aa4bc94896608ff6a433bc7c39f6d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7c9e4dc318b6ce443062e9d7dd796e36ead41989e7671ccbe3df0e0ebe99d5cbba4290c5b71408abcf83ff9f622facb6dd07c23194136d741339eb4f1e26ee7c
|
|
7
|
+
data.tar.gz: 032acfa618083162944e0d9253ce094a7682db09a18957b2d925363d1c886d376a1240cf1c9929e14984504d7503007c6f30838f0a18c96f6a8763e41a2d6543
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# This workflow uses actions that are not certified by GitHub.
|
|
2
|
+
# They are provided by a third-party and are governed by
|
|
3
|
+
# separate terms of service, privacy policy, and support
|
|
4
|
+
# documentation.
|
|
5
|
+
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
|
6
|
+
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
|
7
|
+
|
|
8
|
+
name: Ruby
|
|
9
|
+
|
|
10
|
+
on:
|
|
11
|
+
push:
|
|
12
|
+
branches: [ master ]
|
|
13
|
+
pull_request:
|
|
14
|
+
branches: [ master ]
|
|
15
|
+
|
|
16
|
+
jobs:
|
|
17
|
+
test:
|
|
18
|
+
|
|
19
|
+
runs-on: ubuntu-latest
|
|
20
|
+
|
|
21
|
+
steps:
|
|
22
|
+
- uses: actions/checkout@v2
|
|
23
|
+
- name: Set up Ruby
|
|
24
|
+
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
|
25
|
+
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
|
26
|
+
uses: ruby/setup-ruby@v1
|
|
27
|
+
# uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
|
|
28
|
+
with:
|
|
29
|
+
ruby-version: 2.6
|
|
30
|
+
- name: Install dependencies
|
|
31
|
+
run: bundle install
|
|
32
|
+
- name: Run tests
|
|
33
|
+
run: bundle exec rake
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
is_it_done_yet (0.
|
|
4
|
+
is_it_done_yet (0.6.0)
|
|
5
5
|
concurrent-ruby
|
|
6
6
|
json
|
|
7
7
|
rack-contrib
|
|
@@ -14,28 +14,29 @@ GEM
|
|
|
14
14
|
specs:
|
|
15
15
|
byebug (11.0.0)
|
|
16
16
|
coderay (1.1.2)
|
|
17
|
-
concurrent-ruby (1.1.
|
|
17
|
+
concurrent-ruby (1.1.7)
|
|
18
18
|
daemons (1.3.1)
|
|
19
19
|
diff-lcs (1.3)
|
|
20
20
|
eventmachine (1.2.7)
|
|
21
|
-
json (2.
|
|
21
|
+
json (2.3.1)
|
|
22
22
|
knapsack (1.17.1)
|
|
23
23
|
rake
|
|
24
24
|
method_source (0.9.2)
|
|
25
|
-
mustermann (1.
|
|
25
|
+
mustermann (1.1.1)
|
|
26
|
+
ruby2_keywords (~> 0.0.1)
|
|
26
27
|
pry (0.12.2)
|
|
27
28
|
coderay (~> 1.1.0)
|
|
28
29
|
method_source (~> 0.9.0)
|
|
29
|
-
rack (2.
|
|
30
|
-
rack-contrib (2.
|
|
30
|
+
rack (2.2.3)
|
|
31
|
+
rack-contrib (2.2.0)
|
|
31
32
|
rack (~> 2.0)
|
|
32
|
-
rack-protection (2.0.
|
|
33
|
+
rack-protection (2.0.8.1)
|
|
33
34
|
rack
|
|
34
35
|
rack-test (1.1.0)
|
|
35
36
|
rack (>= 1.0, < 3)
|
|
36
|
-
rack-token_auth (0.
|
|
37
|
+
rack-token_auth (0.2.0)
|
|
37
38
|
rack
|
|
38
|
-
rake (
|
|
39
|
+
rake (13.0.1)
|
|
39
40
|
rspec (3.8.0)
|
|
40
41
|
rspec-core (~> 3.8.0)
|
|
41
42
|
rspec-expectations (~> 3.8.0)
|
|
@@ -49,16 +50,17 @@ GEM
|
|
|
49
50
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
50
51
|
rspec-support (~> 3.8.0)
|
|
51
52
|
rspec-support (3.8.0)
|
|
52
|
-
|
|
53
|
+
ruby2_keywords (0.0.2)
|
|
54
|
+
sinatra (2.0.8.1)
|
|
53
55
|
mustermann (~> 1.0)
|
|
54
56
|
rack (~> 2.0)
|
|
55
|
-
rack-protection (= 2.0.
|
|
57
|
+
rack-protection (= 2.0.8.1)
|
|
56
58
|
tilt (~> 2.0)
|
|
57
59
|
thin (1.7.2)
|
|
58
60
|
daemons (~> 1.0, >= 1.0.9)
|
|
59
61
|
eventmachine (~> 1.0, >= 1.0.4)
|
|
60
62
|
rack (>= 1, < 3)
|
|
61
|
-
tilt (2.0.
|
|
63
|
+
tilt (2.0.10)
|
|
62
64
|
|
|
63
65
|
PLATFORMS
|
|
64
66
|
ruby
|
|
@@ -74,4 +76,4 @@ DEPENDENCIES
|
|
|
74
76
|
rspec
|
|
75
77
|
|
|
76
78
|
BUNDLED WITH
|
|
77
|
-
1.
|
|
79
|
+
2.1.0.pre.1
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: is_it_done_yet
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Erik Madsen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-08-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: concurrent-ruby
|
|
@@ -201,6 +201,7 @@ executables: []
|
|
|
201
201
|
extensions: []
|
|
202
202
|
extra_rdoc_files: []
|
|
203
203
|
files:
|
|
204
|
+
- ".github/workflows/ruby.yml"
|
|
204
205
|
- ".gitignore"
|
|
205
206
|
- ".rspec"
|
|
206
207
|
- CHANGELOG.md
|
|
@@ -243,7 +244,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
243
244
|
- !ruby/object:Gem::Version
|
|
244
245
|
version: '0'
|
|
245
246
|
requirements: []
|
|
246
|
-
rubygems_version: 3.0.
|
|
247
|
+
rubygems_version: 3.1.0.pre1
|
|
247
248
|
signing_key:
|
|
248
249
|
specification_version: 4
|
|
249
250
|
summary: Tracks statuses of CI build nodes
|