ci-helper 0.2.1 → 0.2.2
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 +38 -2
- data/Gemfile.lock +1 -1
- data/ci_helper.gemspec +1 -1
- data/lib/ci_helper/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 770629db9e962c008f6abed96b6385e4678857c5da98782086978d09785691b9
|
|
4
|
+
data.tar.gz: e3cc5ce56806745706527a916cf5cc6c0488111cf1eba4b5edc781da930a38cc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d2e061a61d6fbc3944501ccb1a62aac9a37935d570d05ddf65aa964e33d3b035f5267da5affe5f7ac1a0f976e5f3427f2bec55d976ec961a2d180a25a00d256c
|
|
7
|
+
data.tar.gz: f88a6d6bcda60a37ee75385f9baf4eb254eae2c2e0facdc61b02d95ee2846866582e5deb042e367ae4e92496ef676e89e4158e54f995aa4303ddf0f395e3a2d7
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -14,7 +14,7 @@ on:
|
|
|
14
14
|
branches: [ master ]
|
|
15
15
|
|
|
16
16
|
jobs:
|
|
17
|
-
test:
|
|
17
|
+
test-latest:
|
|
18
18
|
|
|
19
19
|
runs-on: ubuntu-latest
|
|
20
20
|
|
|
@@ -24,7 +24,7 @@ jobs:
|
|
|
24
24
|
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
|
25
25
|
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
|
26
26
|
# uses: ruby/setup-ruby@v1
|
|
27
|
-
uses: ruby/setup-ruby@
|
|
27
|
+
uses: ruby/setup-ruby@v1
|
|
28
28
|
with:
|
|
29
29
|
ruby-version: 2.7
|
|
30
30
|
- name: Install dependencies
|
|
@@ -43,3 +43,39 @@ jobs:
|
|
|
43
43
|
uses: coverallsapp/github-action@v1.1.1
|
|
44
44
|
with:
|
|
45
45
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
46
|
+
specs-for-26:
|
|
47
|
+
runs-on: ubuntu-latest
|
|
48
|
+
|
|
49
|
+
steps:
|
|
50
|
+
- uses: actions/checkout@v2
|
|
51
|
+
- name: Set up Ruby
|
|
52
|
+
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
|
53
|
+
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
|
54
|
+
# uses: ruby/setup-ruby@v1
|
|
55
|
+
uses: ruby/setup-ruby@v1
|
|
56
|
+
with:
|
|
57
|
+
ruby-version: 2.6
|
|
58
|
+
- name: Install dependencies
|
|
59
|
+
run: bundle install && gem install bundler-audit
|
|
60
|
+
- name: Build and install gem to systems gems
|
|
61
|
+
run: bundle exec rake install
|
|
62
|
+
- name: Run specs
|
|
63
|
+
run: ci-helper RunSpecs
|
|
64
|
+
specs-for-25:
|
|
65
|
+
runs-on: ubuntu-latest
|
|
66
|
+
|
|
67
|
+
steps:
|
|
68
|
+
- uses: actions/checkout@v2
|
|
69
|
+
- name: Set up Ruby
|
|
70
|
+
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
|
71
|
+
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
|
72
|
+
# uses: ruby/setup-ruby@v1
|
|
73
|
+
uses: ruby/setup-ruby@v1
|
|
74
|
+
with:
|
|
75
|
+
ruby-version: 2.5
|
|
76
|
+
- name: Install dependencies
|
|
77
|
+
run: bundle install && gem install bundler-audit
|
|
78
|
+
- name: Build and install gem to systems gems
|
|
79
|
+
run: bundle exec rake install
|
|
80
|
+
- name: Run specs
|
|
81
|
+
run: ci-helper RunSpecs
|
data/Gemfile.lock
CHANGED
data/ci_helper.gemspec
CHANGED
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.description = "CIHelper is a gem with Continuous Integration helpers for Ruby"
|
|
13
13
|
spec.homepage = "https://github.com/umbrellio/ci_helper"
|
|
14
14
|
spec.license = "MIT"
|
|
15
|
-
spec.required_ruby_version = Gem::Requirement.new(">= 2.
|
|
15
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
|
|
16
16
|
|
|
17
17
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
18
18
|
spec.metadata["source_code_uri"] = "https://github.com/umbrellio/ci_helper"
|
data/lib/ci_helper/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ci-helper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- JustAnotherDude
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-08-
|
|
11
|
+
date: 2020-08-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: colorize
|
|
@@ -198,14 +198,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
198
198
|
requirements:
|
|
199
199
|
- - ">="
|
|
200
200
|
- !ruby/object:Gem::Version
|
|
201
|
-
version: 2.
|
|
201
|
+
version: 2.5.0
|
|
202
202
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
203
203
|
requirements:
|
|
204
204
|
- - ">="
|
|
205
205
|
- !ruby/object:Gem::Version
|
|
206
206
|
version: '0'
|
|
207
207
|
requirements: []
|
|
208
|
-
rubygems_version: 3.1.
|
|
208
|
+
rubygems_version: 3.1.4
|
|
209
209
|
signing_key:
|
|
210
210
|
specification_version: 4
|
|
211
211
|
summary: Continuous Integration helpers for Ruby
|