Sha256: cdecf8107fc11e13b709ac204ce9be27a66e167625dae27648242f6ff1083013

Contents?: true

Size: 1.5 KB

Versions: 3

Compression:

Stored size: 1.5 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "evented_bluepill/version"

Gem::Specification.new do |s|
  s.name        = "evented_bluepill"
  s.version     = EventedBluepill::VERSION::STRING
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Stefan Huber", "Arya Asemanfar", "Gary Tsang", "Rohith Ravi"]
  s.email       = ["MSNexploder@gmail.com"]
  s.homepage    = "http://github.com/msnexploder/evented_bluepill"
  s.summary     = %q{A process monitor written in Ruby with stability and minimalism in mind.}
  s.description = %q{EventedBluepill 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.}

  s.add_dependency 'daemons', '~> 1.1.0'
  s.add_dependency 'blankslate', '~> 2.1.2.3'
  s.add_dependency 'state_machine', '~> 0.9.4'
  s.add_dependency 'activesupport', '~> 3.0.0'
  s.add_dependency 'i18n', '~> 0.5.0'
  s.add_dependency 'cool.io', '~> 1.0.0'

  s.add_development_dependency 'minitest', '~> 2.0.2'
  s.add_development_dependency 'mocha', '~> 0.9.12'

  s.rubyforge_project = "evented_bluepill"

  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"]
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
evented_bluepill-0.0.52 evented_bluepill.gemspec
evented_bluepill-0.0.51 evented_bluepill.gemspec
evented_bluepill-0.0.50 evented_bluepill.gemspec