capistrano-systemd-jr 1.0.0 → 1.0.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: d95cecc5750fc9285de3a3cc12617e9fa8a64b9b9bd392d82b1ad556db55dcdb
4
- data.tar.gz: bb96b27b74d1ecf1e69be4e7ffac1ce17067aa3afbba2d820346be3a6f739c4e
3
+ metadata.gz: fc016fbf0dc77be3d56fba08ede28aed77dfb9e95f847e204a66e66d25e6b6aa
4
+ data.tar.gz: 4ce0c847be10b4ff74c45504b3da6bf7a4fa0d80739126ea6134ec05301190b4
5
5
  SHA512:
6
- metadata.gz: 26c0b1355c82b41f940e72fed60d943e84912eb916df2402a41b384154edc4bd60c590220a21c9f2d96dc3efe6e9a918ed3ad52021a8d7ce2608013324610590
7
- data.tar.gz: f30b6f2d974ba35457b0ed1b44d4457fbee75459d85c5e06ea338feb475d271dfc3a10235b5b307cb27a0909662d763dba4274d0ef862d50e0edcd5eb39f05ca
6
+ metadata.gz: 58ed13d4e7a7402c97de31c9a5a803b31c2d31c20079e74ba0f3d02460dfbc8de5bdbe9f93e1bd0502fbda9bf154f2cea0c9cbb3d545e2085b9cad831d4d1ec7
7
+ data.tar.gz: 78e32ea3e24ba3817070f1d159cd8abdd82633ba2a152190001e2d91c52842f801618d4611a6697b54a9a9ae0f5a7ca096b4de86756e5f1cec0ca133a8ffa3a0
data/.gitignore CHANGED
@@ -1,9 +1,10 @@
1
+ *.gem
1
2
  /.bundle/
2
3
  /.yardoc
3
- /Gemfile.lock
4
4
  /_yardoc/
5
5
  /coverage/
6
6
  /doc/
7
+ /Gemfile.lock
7
8
  /pkg/
8
9
  /spec/reports/
9
- /tmp/
10
+ /tmp/
data/README.md CHANGED
@@ -2,14 +2,12 @@
2
2
 
3
3
  This gem add tasks into capistrano for systemd commands (start, stop, restart, status, enable, disable, etc.) on the target machine. It performs `systemctl restart` after deploy as well.
4
4
 
5
- This is a fork of the original [capistrano-systemd gem by CrBoy](https://github.com/CrBoy/capistrano-systemd). This version includes a few fixes/imporvements which were never officially published by the original project.
6
-
7
5
  ## Installation
8
6
 
9
7
  Add this line to your application's Gemfile:
10
8
 
11
9
  ```ruby
12
- gem 'capistrano-systemd-jr'
10
+ gem 'capistrano-systemd'
13
11
  ```
14
12
 
15
13
  And then execute:
@@ -18,7 +16,7 @@ And then execute:
18
16
 
19
17
  Or install it yourself as:
20
18
 
21
- $ gem install capistrano-systemd-jr
19
+ $ gem install capistrano-systemd
22
20
 
23
21
  ## Usage
24
22
 
@@ -4,12 +4,12 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "capistrano-systemd-jr"
7
- spec.version = "1.0.0"
8
- spec.authors = ["CrBoy"]
9
- spec.email = ["crboy@crboy.net"]
7
+ spec.version = "1.0.1"
8
+ spec.authors = ["James Ridgway"]
9
+ spec.email = ["james@jamesridgway.co.uk"]
10
10
 
11
- spec.summary = %q{Systemd operations for capistrano based on the original gem by CrBoy}
12
- spec.description = %q{This is a forked and modified version of the original capistrano-systemd gem by CrBoy.}
11
+ spec.summary = %q{Systemd operations for capistrano based on the original capistrano-systemd gem by CrBoy}
12
+ spec.description = %q{}
13
13
  spec.homepage = "https://github.com/jamesridgway/capistrano-systemd"
14
14
  spec.license = "MIT"
15
15
 
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-systemd-jr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
- - CrBoy
7
+ - James Ridgway
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
@@ -52,10 +52,9 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '10.0'
55
- description: This is a forked and modified version of the original capistrano-systemd
56
- gem by CrBoy.
55
+ description: ''
57
56
  email:
58
- - crboy@crboy.net
57
+ - james@jamesridgway.co.uk
59
58
  executables: []
60
59
  extensions: []
61
60
  extra_rdoc_files: []
@@ -94,5 +93,6 @@ requirements: []
94
93
  rubygems_version: 3.0.4
95
94
  signing_key:
96
95
  specification_version: 4
97
- summary: Systemd operations for capistrano based on the original gem by CrBoy
96
+ summary: Systemd operations for capistrano based on the original capistrano-systemd
97
+ gem by CrBoy
98
98
  test_files: []