File: haproxyctl.gemspec

package info (click to toggle)
haproxyctl 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 152 kB
  • ctags: 18
  • sloc: ruby: 333; sh: 57; makefile: 5
file content (19 lines) | stat: -rw-r--r-- 1,164 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/haproxyctl/version', __FILE__)

Gem::Specification.new do |gem|
  gem.authors       = ["Carlo Flores"]
  gem.email         = ["github@petalphile.com"]
  gem.description   = %q{This is a simple wrapper to make life with HAProxy a little more convenient. Acts as an init script for start, stop, reload, restart, etc. Leverages 'socket' to enable and disable servers on the fly. Formats server weight and backends in a readable way. Provides Nagios and Cloudkick health checks. Compatible with RHEL chkconfig/service.}
  gem.summary       = %q{Wrapper to talk to the HAProxy socket, as well as regular init (start|stop|status|etc)}
  gem.homepage      = "https://github.com/flores/haproxyctl"
  gem.rubyforge_project = "haproxyctl"
  gem.license       = "MIT"
  gem.files         = `git ls-files`.split($\)
  gem.files.reject! { |fn| fn.include? "rhapr" }
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.name          = "haproxyctl"
  gem.require_paths = ["lib"]
  gem.version       = HAProxyCTL::VERSION
end