bluepill 0.0.54 → 0.0.55

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.
@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
14
14
  s.summary = %q{A process monitor written in Ruby with stability and minimalism in mind.}
15
15
  s.description = %q{Bluepill keeps your daemons up while taking up as little resources as possible. After all you probably want the resources of your server to be used by whatever daemons you are running rather than the thing that's supposed to make sure they are brought back up, should they die or misbehave.}
16
16
 
17
- s.add_dependency 'daemons', ['~> 1.1.4', '<= 1.1.6']
17
+ s.add_dependency 'daemons', ['~> 1.1.4']
18
18
  s.add_dependency 'state_machine', '~> 1.1.0'
19
19
  s.add_dependency 'activesupport', '>= 3.0.0'
20
20
  s.add_dependency 'i18n', '>= 0.5.0'
@@ -6,6 +6,10 @@ gem "state_machine"
6
6
  require "state_machine"
7
7
  require "daemons"
8
8
 
9
+ unless Module.const_defined?("Daemonize")
10
+ Daemonize = Daemonization
11
+ end
12
+
9
13
  module Bluepill
10
14
  class Process
11
15
  CONFIGURABLE_ATTRIBUTES = [
@@ -1,4 +1,4 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  module Bluepill
3
- VERSION = "0.0.54".freeze
3
+ VERSION = "0.0.55".freeze
4
4
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bluepill
3
3
  version: !ruby/object:Gem::Version
4
- hash: 115
4
+ hash: 113
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 54
10
- version: 0.0.54
9
+ - 55
10
+ version: 0.0.55
11
11
  platform: ruby
12
12
  authors:
13
13
  - Arya Asemanfar
@@ -34,14 +34,6 @@ dependencies:
34
34
  - 1
35
35
  - 4
36
36
  version: 1.1.4
37
- - - <=
38
- - !ruby/object:Gem::Version
39
- hash: 31
40
- segments:
41
- - 1
42
- - 1
43
- - 6
44
- version: 1.1.6
45
37
  type: :runtime
46
38
  version_requirements: *id001
47
39
  - !ruby/object:Gem::Dependency