forked from pedromg/bluepill
-
Notifications
You must be signed in to change notification settings - Fork 1
/
bluepill.gemspec
37 lines (30 loc) · 1.75 KB
/
bluepill.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
require "bluepill/version"
Gem::Specification.new do |s|
s.name = "cloud66-bluepill"
s.version = Bluepill::VERSION.dup
s.platform = Gem::Platform::RUBY
s.authors = ["Arya Asemanfar", "Gary Tsang", "Rohith Ravi", "Cloud66"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/arya/bluepill"
s.summary = %q{A process monitor written in Ruby with stability and minimalism in mind.}
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. Forked from http://github.com/arya/bluepill}
s.add_dependency 'daemons', ['~> 1.1.4']
s.add_dependency 'state_machine', '~> 1.1.0'
s.add_dependency 'activesupport', '>= 3.0.0'
s.add_dependency 'i18n', '>= 0.5.0'
s.add_development_dependency 'bundler', '>= 1.0.10'
s.add_development_dependency 'rake', '!= 0.9.0'
s.add_development_dependency 'rspec', '~> 2.12.0'
s.add_development_dependency 'rspec-core', '~> 2.12.0'
s.add_development_dependency 'rspec-expectations', '~> 2.12.0'
s.add_development_dependency 'rspec-mocks', '~> 2.12.0'
s.add_development_dependency 'faker', '~> 0.9'
s.add_development_dependency 'yard', '~> 0.7'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.extra_rdoc_files = ["LICENSE", "README.md"]
end