capistrano-systemd-multiservice 0.1.0.beta11 → 0.1.0.beta12
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/ci.yml +33 -0
- data/README.md +1 -1
- data/capistrano-systemd-multiservice.gemspec +1 -1
- data/lib/capistrano/systemd/multiservice/version.rb +1 -1
- metadata +6 -6
- data/.travis.yml +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 62433296835f98c6d63416bc1387b28411809c2cd0bee65c2991674beba32d26
|
4
|
+
data.tar.gz: 17bb133ef8afd0caba20d7814225b544fceb296a406c0fddfa7ab9ff01f9aab3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e0ec89e5434da0a0213e671ba9f1c986730d796e87545d44460a03df6208e14ddfcefdbbfbeb4adb15745c96d50cd799b2d49b7888dac7394337a5748eb3d36d
|
7
|
+
data.tar.gz: 0dc3ed708ec514dd6d79cd7f7142ca46d9096bfd82d5aec67aab094d8404f189cbe6379e59b1697037a25ea0a46f7642ed264d1c07bf8d8992b7a8547c044573
|
@@ -0,0 +1,33 @@
|
|
1
|
+
#
|
2
|
+
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions
|
3
|
+
#
|
4
|
+
|
5
|
+
name: CI
|
6
|
+
|
7
|
+
on:
|
8
|
+
push:
|
9
|
+
branches:
|
10
|
+
- '**'
|
11
|
+
|
12
|
+
jobs:
|
13
|
+
test:
|
14
|
+
name: Test
|
15
|
+
runs-on: ubuntu-latest
|
16
|
+
strategy:
|
17
|
+
matrix:
|
18
|
+
ruby-version: [2.6, 2.7, 3.0]
|
19
|
+
fail-fast: false
|
20
|
+
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
21
|
+
steps:
|
22
|
+
# https://github.com/actions/checkout
|
23
|
+
- uses: actions/checkout@v2
|
24
|
+
|
25
|
+
# https://github.com/ruby/setup-ruby
|
26
|
+
- uses: ruby/setup-ruby@v1
|
27
|
+
with:
|
28
|
+
ruby-version: ${{ matrix.ruby-version }}
|
29
|
+
bundler-cache: true
|
30
|
+
|
31
|
+
- name: Test
|
32
|
+
run: bundle exec rake spec
|
33
|
+
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# capistrano-systemd-multiservice
|
2
2
|
|
3
|
-
[](https://rubygems.org/gems/capistrano-systemd-multiservice) [](https://rubygems.org/gems/capistrano-systemd-multiservice) [](https://github.com/groovenauts/capistrano-systemd-multiservice/actions/workflows/ci.yml)
|
4
4
|
|
5
5
|
This gem adds capistrano tasks to control multiple services with systemd.
|
6
6
|
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
|
|
21
21
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
22
|
spec.require_paths = ["lib"]
|
23
23
|
|
24
|
-
spec.add_dependency "capistrano", ">= 3.7.0", "< 3.
|
24
|
+
spec.add_dependency "capistrano", ">= 3.7.0", "< 3.17.0"
|
25
25
|
spec.add_development_dependency "bundler"
|
26
26
|
spec.add_development_dependency "rake"
|
27
27
|
spec.add_development_dependency "rspec", "~> 3.0"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-systemd-multiservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.0.
|
4
|
+
version: 0.1.0.beta12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- YAMADA Tsuyoshi
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: 3.7.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.17.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: 3.7.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.17.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: bundler
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -94,9 +94,9 @@ extensions: []
|
|
94
94
|
extra_rdoc_files: []
|
95
95
|
files:
|
96
96
|
- ".github/dependabot.yml"
|
97
|
+
- ".github/workflows/ci.yml"
|
97
98
|
- ".gitignore"
|
98
99
|
- ".rspec"
|
99
|
-
- ".travis.yml"
|
100
100
|
- Gemfile
|
101
101
|
- LICENSE
|
102
102
|
- README.md
|
@@ -128,7 +128,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
128
128
|
- !ruby/object:Gem::Version
|
129
129
|
version: 1.3.1
|
130
130
|
requirements: []
|
131
|
-
rubygems_version: 3.2.
|
131
|
+
rubygems_version: 3.2.11
|
132
132
|
signing_key:
|
133
133
|
specification_version: 4
|
134
134
|
summary: Capistrano Plugin to control services by systemd
|