File: raemon.gemspec

package info (click to toggle)
ruby-raemon 0.3.0%2Bgit.2012.05.18.b78eaae57c-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 220 kB
  • ctags: 104
  • sloc: ruby: 901; makefile: 4
file content (24 lines) | stat: -rw-r--r-- 882 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
23
24
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'raemon/version'

Gem::Specification.new do |s|
  s.name        = 'raemon'
  s.version     = Raemon::VERSION
  s.platform    = Gem::Platform::RUBY
  s.summary     = "Raemon is a Ruby framework for building UNIX daemons"
  s.description = "Raemon is a Ruby framework for building UNIX daemons"

  s.authors     = ["Peter Kieltyka"]
  s.email       = ["peter.kieltyka@nulayer.com"]
  s.homepage    = "http://github.com/nulayer/raemon"

  s.files        = Dir['README', 'lib/**/*']
  s.require_path = 'lib'

  s.add_development_dependency 'rake'
  s.add_development_dependency 'rspec',            ['~> 2.9.0']
  s.add_development_dependency 'simplecov',        ['~> 0.6.1']
  s.add_development_dependency 'em-jack',          ['~> 0.1.3']
  s.add_development_dependency 'beanstalk-client', ['~> 1.1.0']
end