File: unicorn-worker-killer.gemspec

package info (click to toggle)
ruby-unicorn-worker-killer 0.4.4-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 104 kB
  • sloc: ruby: 91; makefile: 4
file content (22 lines) | stat: -rw-r--r-- 1,029 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# encoding: utf-8
$:.push File.expand_path('../lib', __FILE__)

Gem::Specification.new do |gem|
  gem.name        = "unicorn-worker-killer"
  gem.description = "Kill unicorn workers by memory and request counts"
  gem.homepage    = "https://github.com/kzk/unicorn-worker-killer"
  gem.summary     = gem.description
  gem.version     = File.read("VERSION").strip
  gem.authors     = ["Kazuki Ohta", "Sadayuki Furuhashi", "Jonathan Clem"]
  gem.email       = ["kazuki.ohta@gmail.com", "frsyuki@gmail.com", "jonathan@jclem.net"]
  gem.has_rdoc    = false
  #gem.platform    = Gem::Platform::RUBY
  gem.files       = `git ls-files`.split("\n")
  gem.test_files  = `git ls-files -- {test,spec,features}/*`.split("\n")
  gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  gem.licenses    = ["GPLv2+", "Ruby 1.8"]
  gem.require_paths = ['lib']
  gem.add_dependency "unicorn",         [">= 4", "< 6"]
  gem.add_dependency "get_process_mem", "~> 0"
  gem.add_development_dependency "rake", ">= 0.9.2"
end