Sha256: eec890af5eabc75d9507c25985e796074a24a4c471f30e146eed72fc2bedc958
Contents?: true
Size: 1.34 KB
Versions: 2
Compression:
Stored size: 1.34 KB
Contents
lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'bluepill/version' Gem::Specification.new do |spec| spec.name = 'bluepill' spec.version = Bluepill::Version spec.platform = Gem::Platform::RUBY spec.authors = ['Arya Asemanfar', 'Gary Tsang', 'Rohith Ravi'] spec.email = ['entombedvirus@gmail.com'] spec.homepage = 'http://github.com/bluepill-rb/bluepill' spec.summary = 'A process monitor written in Ruby with stability and minimalism in mind.' spec.description = "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." spec.license = 'MIT' spec.add_dependency 'activesupport', ['>= 3.2', '< 5'] spec.add_dependency 'blue-daemons', '~> 1.1' spec.add_dependency 'state_machine', '~> 1.1' spec.add_development_dependency 'bundler', '~> 1.3' spec.required_ruby_version = '>= 1.9.3' spec.files = %w(CONTRIBUTING.md DESIGN.md LICENSE README.md bluepill.gemspec) + Dir['bin/*'] + Dir['lib/**/*.rb'] spec.executables = Dir['bin/*'].collect { |f| File.basename(f) } spec.require_paths = ['lib'] end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bluepill-0.1.2 | bluepill.gemspec |
bluepill-0.1.1 | bluepill.gemspec |