capistrano-rpush 0.2.0 → 0.2.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 +5 -5
- data/.ruby-version +1 -1
- data/capistrano-rpush.gemspec +2 -2
- data/lib/capistrano/rpush.rb +2 -0
- data/lib/capistrano/rpush/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 73168e9051617421e72ea8fd7440d796ffd344f4875140d5ded652c2a881edd0
|
|
4
|
+
data.tar.gz: 0efd925a84bd9bd433019fdc13447c8f97c8cdc369cb05af205e691932c661b2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6acec65ec10409d16107034cb6032ac4cb2cdc14bb92e913716c03731164dc0981346fdf2758304fd2867fcede27d471eab692f403aa77b9c220c00cf6e75e4a
|
|
7
|
+
data.tar.gz: c13774c0032eb6fc53fea6c262b4a5d62ee5658bc4617de84d89f90e4d2a226ca64eda26c1158e590540b5604a84c7a7b0d1a40582735d5333371a7311a084f4
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.5.1
|
data/capistrano-rpush.gemspec
CHANGED
|
@@ -6,8 +6,8 @@ require 'capistrano/rpush/version'
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = 'capistrano-rpush'
|
|
8
8
|
spec.version = Capistrano::RpushPlugin::VERSION
|
|
9
|
-
spec.authors = ['Mel Riffe']
|
|
10
|
-
spec.email = ['mel@juicyparts.com']
|
|
9
|
+
spec.authors = ['Mel Riffe', 'Cliff Braton']
|
|
10
|
+
spec.email = ['mel@juicyparts.com', 'cliff.braton@gmail.com']
|
|
11
11
|
spec.summary = %q{Capistrano3 plugin with basic 'start', 'stop' commands for rpush.}
|
|
12
12
|
spec.description = %q{A set of Capistrano3 tasks to controll a deployed Rpush installation. The tasks include: restart, start, status, and stop.}
|
|
13
13
|
spec.homepage = 'http://juicyparts.com/capistrano-rpush'
|
data/lib/capistrano/rpush.rb
CHANGED
|
@@ -16,7 +16,9 @@ class Capistrano::Rpush < Capistrano::Plugin
|
|
|
16
16
|
set_if_empty :rpush_log, -> { File.join(shared_path, 'log', 'rpush.log') }
|
|
17
17
|
set_if_empty :rpush_pid, -> { File.join(shared_path, 'tmp', 'pids', 'rpush.pid') }
|
|
18
18
|
|
|
19
|
+
append :chruby_map_bins, 'rpush'
|
|
19
20
|
append :rbenv_map_bins, 'rpush'
|
|
21
|
+
append :rvm_map_bins, 'rpush'
|
|
20
22
|
append :bundle_bins, 'rpush'
|
|
21
23
|
end
|
|
22
24
|
|
metadata
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-rpush
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mel Riffe
|
|
8
|
+
- Cliff Braton
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: exe
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date:
|
|
12
|
+
date: 2019-01-10 00:00:00.000000000 Z
|
|
12
13
|
dependencies:
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: capistrano
|
|
@@ -90,6 +91,7 @@ description: 'A set of Capistrano3 tasks to controll a deployed Rpush installati
|
|
|
90
91
|
The tasks include: restart, start, status, and stop.'
|
|
91
92
|
email:
|
|
92
93
|
- mel@juicyparts.com
|
|
94
|
+
- cliff.braton@gmail.com
|
|
93
95
|
executables: []
|
|
94
96
|
extensions: []
|
|
95
97
|
extra_rdoc_files: []
|
|
@@ -132,7 +134,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
132
134
|
version: '0'
|
|
133
135
|
requirements: []
|
|
134
136
|
rubyforge_project:
|
|
135
|
-
rubygems_version: 2.6
|
|
137
|
+
rubygems_version: 2.7.6
|
|
136
138
|
signing_key:
|
|
137
139
|
specification_version: 4
|
|
138
140
|
summary: Capistrano3 plugin with basic 'start', 'stop' commands for rpush.
|