capistrano-rpush 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: d04fd1717ead14deadc0785a44c576e7dd7ad1eb
4
- data.tar.gz: 9d842e6e773a94c1b9930377bdd86fa6798cd5b8
2
+ SHA256:
3
+ metadata.gz: 73168e9051617421e72ea8fd7440d796ffd344f4875140d5ded652c2a881edd0
4
+ data.tar.gz: 0efd925a84bd9bd433019fdc13447c8f97c8cdc369cb05af205e691932c661b2
5
5
  SHA512:
6
- metadata.gz: 48a73bfbc2ea5edaa8a26fdba3b3c04831c4a59a572cf30cd131edf4b0ff3ee6ec499ab3ee652a66538696e5a3a7ec2c5568187adb6b1fa3dc45ed59500f271a
7
- data.tar.gz: 6346b5858b88508adcc93b653016f7d7b537f2723e82c124cf1d4cd281e22d2cb31090c91c3adb465ce39769bf0c95dd6f5e59e3da85be9db8f4d8a556da9837
6
+ metadata.gz: 6acec65ec10409d16107034cb6032ac4cb2cdc14bb92e913716c03731164dc0981346fdf2758304fd2867fcede27d471eab692f403aa77b9c220c00cf6e75e4a
7
+ data.tar.gz: c13774c0032eb6fc53fea6c262b4a5d62ee5658bc4617de84d89f90e4d2a226ca64eda26c1158e590540b5604a84c7a7b0d1a40582735d5333371a7311a084f4
@@ -1 +1 @@
1
- 2.4.2
1
+ 2.5.1
@@ -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'
@@ -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
 
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module RpushPlugin
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  end
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.0
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: 2017-10-07 00:00:00.000000000 Z
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.13
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.