capistrano-daemonize 0.9.1 → 0.9.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 213bc2dc7e998b951f64d91651eac5cf67229f6a
4
+ data.tar.gz: ec5b951469afd88c9cc9f22f55bc5e3189bb8399
5
+ SHA512:
6
+ metadata.gz: 7488ef40ddec70a8d198a17e52c1625565964431093d20867da06ee5e2f148db65bbdb8acfdf8a1f3e6e336096819ecca91620550c8a30f2a7cecc9bfd6c1edc
7
+ data.tar.gz: f87b74434e2aaeca6090b62f2c03ce7ded1635098b789498257d6a23d36b39d89cc3d6370dcac633e3f1200b4d0cfcba790affd4657ddf2d6d48a06fe08646c4
data/Changelog CHANGED
@@ -1,3 +1,7 @@
1
+ 0.9.2
2
+
3
+ * Require capistrano < 3.0
4
+
1
5
  0.9.1
2
6
 
3
7
  * Add workaround for PTYs
data/README.md CHANGED
@@ -1,3 +1,6 @@
1
+ [![Gem Version](https://badge.fury.io/rb/capistrano-daemonize.png)](http://badge.fury.io/rb/capistrano-daemonize)
2
+ [![Dependency Status](https://gemnasium.com/cschramm/capistrano-daemonize.png)](https://gemnasium.com/cschramm/capistrano-daemonize)
3
+
1
4
  capistrano-daemonize adds a daemonize method to Capistrano's DSL to generate tasks that control arbitrary processes as daemons.
2
5
  It makes use of Debian's /sbin/start-stop-daemon, which is available in every Debian-based Linux distribution like Ubuntu.
3
6
  OpenSuSE and Mandriva do have the binary in both the sysvinit and dpkg packages.
@@ -18,5 +18,5 @@ Gem::Specification.new do |s|
18
18
 
19
19
  s.add_development_dependency 'rake'
20
20
 
21
- s.add_runtime_dependency 'capistrano'
22
- end
21
+ s.add_runtime_dependency 'capistrano', '< 3.0'
22
+ end
@@ -3,7 +3,7 @@ module Capistrano
3
3
  class Version
4
4
  MAJOR = 0
5
5
  MINOR = 9
6
- PATCH = 1
6
+ PATCH = 2
7
7
 
8
8
  def self.to_s
9
9
  "#{MAJOR}.#{MINOR}.#{PATCH}"
metadata CHANGED
@@ -1,48 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-daemonize
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
5
- prerelease:
4
+ version: 0.9.2
6
5
  platform: ruby
7
6
  authors:
8
7
  - Christopher Schramm
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-07-26 00:00:00.000000000 Z
11
+ date: 2013-10-18 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rake
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - '>='
20
18
  - !ruby/object:Gem::Version
21
19
  version: '0'
22
20
  type: :development
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - '>='
28
25
  - !ruby/object:Gem::Version
29
26
  version: '0'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: capistrano
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - <
36
32
  - !ruby/object:Gem::Version
37
- version: '0'
33
+ version: '3.0'
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - <
44
39
  - !ruby/object:Gem::Version
45
- version: '0'
40
+ version: '3.0'
46
41
  description: Adds a daemonize method to the Capistrano DSL to generate start, stop
47
42
  and restart tasks for an arbitrary command controlled with start-stop-daemon.
48
43
  email: cschramm@shakaweb.org
@@ -63,26 +58,25 @@ files:
63
58
  - lib/capistrano-daemonize/version.rb
64
59
  homepage: https://github.com/cschramm/capistrano-daemonize
65
60
  licenses: []
61
+ metadata: {}
66
62
  post_install_message:
67
63
  rdoc_options: []
68
64
  require_paths:
69
65
  - lib
70
66
  required_ruby_version: !ruby/object:Gem::Requirement
71
- none: false
72
67
  requirements:
73
- - - ! '>='
68
+ - - '>='
74
69
  - !ruby/object:Gem::Version
75
70
  version: '0'
76
71
  required_rubygems_version: !ruby/object:Gem::Requirement
77
- none: false
78
72
  requirements:
79
- - - ! '>='
73
+ - - '>='
80
74
  - !ruby/object:Gem::Version
81
75
  version: '0'
82
76
  requirements: []
83
77
  rubyforge_project:
84
- rubygems_version: 1.8.23
78
+ rubygems_version: 2.0.7
85
79
  signing_key:
86
- specification_version: 3
80
+ specification_version: 4
87
81
  summary: Control arbitrary jobs using start-stop-daemon in Capistrano
88
82
  test_files: []