livery 0.3.0 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b8ea0e2a383393333730f59724889091ff024f68d05024d66f8ec4b078218080
4
- data.tar.gz: 3242d234a6f4581f01cc459fd02436fe5c8c023660db7c133960c4c5cd2518c9
3
+ metadata.gz: 4ca6170a8a46a337acb64405759cad51bc8569aa5b88f9d6992049972e09595e
4
+ data.tar.gz: 6dc937ea28f5f3efcab7440feececc7fdbf043da6decc709f7f61ec64d343400
5
5
  SHA512:
6
- metadata.gz: d7d96dffc76aadc1cf0ecdee484ba7b11a865358f3941a4cf952c7d8d63e8b2d55354df47306d3b793f3f48e97eb1ae4ba86211f2c8a753c0b8c21ca32de98a2
7
- data.tar.gz: e92eef44415d478af404ffab4bfdd210b9c08df25acb2c08350d7346c5a345611f6d9528b563e05a3a893f8e5ab8dcf6e967cec1d2323a958db2402fa43bd33a
6
+ metadata.gz: 930bfe721e70cce5691c59c23d81ddf5367f7e9bb0795db2063cc0bdf3b074cc32a807ccc48ef7a41b6e9a9a77ae71cf824a1e83eafc01e7af685ac204486707
7
+ data.tar.gz: 3e32391d5320c6a67c8f6a459cf87310d2e7d6164a491c4da3226c11322b5cab757f1b7871c8d09ae82d2041560568f3155df1af7bcdf51382f70e99209c4e50
@@ -0,0 +1,25 @@
1
+ name: test
2
+
3
+ on: pull_request
4
+
5
+ jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - uses: ruby/setup-ruby@v1
11
+ with:
12
+ ruby-version: 2.6.3
13
+ - uses: actions/cache@v2
14
+ with:
15
+ path: vendor/bundle
16
+ key: ${{ runner.os }}---gems-${{ hashFiles('**/Gemfile.lock') }}
17
+ restore-keys: |
18
+ ${{ runner.os }}---gems
19
+ - name: bundle install via appraisal
20
+ run: |
21
+ bundle config path vendor/bundle
22
+ bundle install
23
+ bundle exec appraisal install
24
+ - name: run tests
25
+ run: bundle exec appraisal rspec
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- livery (0.3.0)
4
+ livery (0.3.1)
5
5
  activesupport (>= 5.1)
6
6
  i18n (>= 0.7, < 2)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (5.2.3)
11
+ activesupport (5.2.4.3)
12
12
  concurrent-ruby (~> 1.0, >= 1.0.2)
13
13
  i18n (>= 0.7, < 2)
14
14
  minitest (~> 5.1)
@@ -17,12 +17,12 @@ GEM
17
17
  bundler
18
18
  rake
19
19
  thor (>= 0.14.0)
20
- concurrent-ruby (1.1.5)
20
+ concurrent-ruby (1.1.6)
21
21
  diff-lcs (1.3)
22
22
  i18n (1.6.0)
23
23
  concurrent-ruby (~> 1.0)
24
24
  minitest (5.11.3)
25
- rake (10.5.0)
25
+ rake (13.0.1)
26
26
  rspec (3.8.0)
27
27
  rspec-core (~> 3.8.0)
28
28
  rspec-expectations (~> 3.8.0)
@@ -38,7 +38,7 @@ GEM
38
38
  rspec-support (3.8.0)
39
39
  thor (0.20.3)
40
40
  thread_safe (0.3.6)
41
- tzinfo (1.2.5)
41
+ tzinfo (1.2.7)
42
42
  thread_safe (~> 0.1)
43
43
 
44
44
  PLATFORMS
@@ -48,7 +48,7 @@ DEPENDENCIES
48
48
  appraisal
49
49
  bundler (~> 1.16)
50
50
  livery!
51
- rake (~> 10.0)
51
+ rake (~> 13.0)
52
52
  rspec (~> 3.0)
53
53
 
54
54
  BUNDLED WITH
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- livery (0.3.0)
4
+ livery (0.3.1)
5
5
  activesupport (>= 5.1)
6
6
  i18n (>= 0.7, < 2)
7
7
 
@@ -17,28 +17,28 @@ GEM
17
17
  bundler
18
18
  rake
19
19
  thor (>= 0.14.0)
20
- concurrent-ruby (1.1.5)
20
+ concurrent-ruby (1.1.6)
21
21
  diff-lcs (1.3)
22
- i18n (1.6.0)
22
+ i18n (1.8.2)
23
23
  concurrent-ruby (~> 1.0)
24
- minitest (5.11.3)
25
- rake (10.5.0)
26
- rspec (3.8.0)
27
- rspec-core (~> 3.8.0)
28
- rspec-expectations (~> 3.8.0)
29
- rspec-mocks (~> 3.8.0)
30
- rspec-core (3.8.2)
31
- rspec-support (~> 3.8.0)
32
- rspec-expectations (3.8.4)
24
+ minitest (5.14.0)
25
+ rake (13.0.1)
26
+ rspec (3.9.0)
27
+ rspec-core (~> 3.9.0)
28
+ rspec-expectations (~> 3.9.0)
29
+ rspec-mocks (~> 3.9.0)
30
+ rspec-core (3.9.1)
31
+ rspec-support (~> 3.9.1)
32
+ rspec-expectations (3.9.0)
33
33
  diff-lcs (>= 1.2.0, < 2.0)
34
- rspec-support (~> 3.8.0)
35
- rspec-mocks (3.8.1)
34
+ rspec-support (~> 3.9.0)
35
+ rspec-mocks (3.9.1)
36
36
  diff-lcs (>= 1.2.0, < 2.0)
37
- rspec-support (~> 3.8.0)
38
- rspec-support (3.8.2)
39
- thor (0.20.3)
37
+ rspec-support (~> 3.9.0)
38
+ rspec-support (3.9.2)
39
+ thor (1.0.1)
40
40
  thread_safe (0.3.6)
41
- tzinfo (1.2.5)
41
+ tzinfo (1.2.6)
42
42
  thread_safe (~> 0.1)
43
43
 
44
44
  PLATFORMS
@@ -49,7 +49,7 @@ DEPENDENCIES
49
49
  appraisal
50
50
  bundler (~> 1.16)
51
51
  livery!
52
- rake (~> 10.0)
52
+ rake (~> 13.0)
53
53
  rspec (~> 3.0)
54
54
 
55
55
  BUNDLED WITH
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- livery (0.3.0)
4
+ livery (0.3.1)
5
5
  activesupport (>= 5.1)
6
6
  i18n (>= 0.7, < 2)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (5.2.3)
11
+ activesupport (5.2.4.3)
12
12
  concurrent-ruby (~> 1.0, >= 1.0.2)
13
13
  i18n (>= 0.7, < 2)
14
14
  minitest (~> 5.1)
@@ -17,28 +17,28 @@ GEM
17
17
  bundler
18
18
  rake
19
19
  thor (>= 0.14.0)
20
- concurrent-ruby (1.1.5)
20
+ concurrent-ruby (1.1.6)
21
21
  diff-lcs (1.3)
22
- i18n (1.6.0)
22
+ i18n (1.8.2)
23
23
  concurrent-ruby (~> 1.0)
24
- minitest (5.11.3)
25
- rake (10.5.0)
26
- rspec (3.8.0)
27
- rspec-core (~> 3.8.0)
28
- rspec-expectations (~> 3.8.0)
29
- rspec-mocks (~> 3.8.0)
30
- rspec-core (3.8.2)
31
- rspec-support (~> 3.8.0)
32
- rspec-expectations (3.8.4)
24
+ minitest (5.14.1)
25
+ rake (13.0.1)
26
+ rspec (3.9.0)
27
+ rspec-core (~> 3.9.0)
28
+ rspec-expectations (~> 3.9.0)
29
+ rspec-mocks (~> 3.9.0)
30
+ rspec-core (3.9.1)
31
+ rspec-support (~> 3.9.1)
32
+ rspec-expectations (3.9.0)
33
33
  diff-lcs (>= 1.2.0, < 2.0)
34
- rspec-support (~> 3.8.0)
35
- rspec-mocks (3.8.1)
34
+ rspec-support (~> 3.9.0)
35
+ rspec-mocks (3.9.1)
36
36
  diff-lcs (>= 1.2.0, < 2.0)
37
- rspec-support (~> 3.8.0)
38
- rspec-support (3.8.2)
39
- thor (0.20.3)
37
+ rspec-support (~> 3.9.0)
38
+ rspec-support (3.9.2)
39
+ thor (1.0.1)
40
40
  thread_safe (0.3.6)
41
- tzinfo (1.2.5)
41
+ tzinfo (1.2.7)
42
42
  thread_safe (~> 0.1)
43
43
 
44
44
  PLATFORMS
@@ -49,7 +49,7 @@ DEPENDENCIES
49
49
  appraisal
50
50
  bundler (~> 1.16)
51
51
  livery!
52
- rake (~> 10.0)
52
+ rake (~> 13.0)
53
53
  rspec (~> 3.0)
54
54
 
55
55
  BUNDLED WITH
@@ -1,47 +1,47 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- livery (0.3.0)
4
+ livery (0.3.1)
5
5
  activesupport (>= 5.1)
6
6
  i18n (>= 0.7, < 2)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (6.0.0.rc1)
11
+ activesupport (6.0.2.1)
12
12
  concurrent-ruby (~> 1.0, >= 1.0.2)
13
13
  i18n (>= 0.7, < 2)
14
14
  minitest (~> 5.1)
15
15
  tzinfo (~> 1.1)
16
- zeitwerk (~> 2.1, >= 2.1.4)
16
+ zeitwerk (~> 2.2)
17
17
  appraisal (2.2.0)
18
18
  bundler
19
19
  rake
20
20
  thor (>= 0.14.0)
21
- concurrent-ruby (1.1.5)
21
+ concurrent-ruby (1.1.6)
22
22
  diff-lcs (1.3)
23
- i18n (1.6.0)
23
+ i18n (1.8.2)
24
24
  concurrent-ruby (~> 1.0)
25
- minitest (5.11.3)
26
- rake (10.5.0)
27
- rspec (3.8.0)
28
- rspec-core (~> 3.8.0)
29
- rspec-expectations (~> 3.8.0)
30
- rspec-mocks (~> 3.8.0)
31
- rspec-core (3.8.2)
32
- rspec-support (~> 3.8.0)
33
- rspec-expectations (3.8.4)
25
+ minitest (5.14.0)
26
+ rake (13.0.1)
27
+ rspec (3.9.0)
28
+ rspec-core (~> 3.9.0)
29
+ rspec-expectations (~> 3.9.0)
30
+ rspec-mocks (~> 3.9.0)
31
+ rspec-core (3.9.1)
32
+ rspec-support (~> 3.9.1)
33
+ rspec-expectations (3.9.0)
34
34
  diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.8.0)
36
- rspec-mocks (3.8.1)
35
+ rspec-support (~> 3.9.0)
36
+ rspec-mocks (3.9.1)
37
37
  diff-lcs (>= 1.2.0, < 2.0)
38
- rspec-support (~> 3.8.0)
39
- rspec-support (3.8.2)
40
- thor (0.20.3)
38
+ rspec-support (~> 3.9.0)
39
+ rspec-support (3.9.2)
40
+ thor (1.0.1)
41
41
  thread_safe (0.3.6)
42
- tzinfo (1.2.5)
42
+ tzinfo (1.2.6)
43
43
  thread_safe (~> 0.1)
44
- zeitwerk (2.1.9)
44
+ zeitwerk (2.2.2)
45
45
 
46
46
  PLATFORMS
47
47
  ruby
@@ -51,7 +51,7 @@ DEPENDENCIES
51
51
  appraisal
52
52
  bundler (~> 1.16)
53
53
  livery!
54
- rake (~> 10.0)
54
+ rake (~> 13.0)
55
55
  rspec (~> 3.0)
56
56
 
57
57
  BUNDLED WITH
@@ -1,3 +1,3 @@
1
1
  module Livery
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
26
26
  spec.require_paths = ["lib"]
27
27
 
28
28
  spec.add_development_dependency "bundler", "~> 1.16"
29
- spec.add_development_dependency "rake", "~> 10.0"
29
+ spec.add_development_dependency "rake", "~> 13.0"
30
30
  spec.add_development_dependency "rspec", "~> 3.0"
31
31
  spec.add_development_dependency "appraisal"
32
32
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: livery
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Hoy
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2020-01-20 00:00:00.000000000 Z
13
+ date: 2020-06-01 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler
@@ -32,14 +32,14 @@ dependencies:
32
32
  requirements:
33
33
  - - "~>"
34
34
  - !ruby/object:Gem::Version
35
- version: '10.0'
35
+ version: '13.0'
36
36
  type: :development
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
40
  - - "~>"
41
41
  - !ruby/object:Gem::Version
42
- version: '10.0'
42
+ version: '13.0'
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: rspec
45
45
  requirement: !ruby/object:Gem::Requirement
@@ -109,6 +109,7 @@ executables: []
109
109
  extensions: []
110
110
  extra_rdoc_files: []
111
111
  files:
112
+ - ".github/workflows/test.yml"
112
113
  - ".gitignore"
113
114
  - ".rspec"
114
115
  - ".travis.yml"