forked from inkel/haproxy-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhaproxy.gemspec
21 lines (18 loc) · 910 Bytes
/
haproxy.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- mode: ruby; encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "haproxy/version"
Gem::Specification.new do |s|
s.name = "haproxy"
s.version = HAProxy::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Leandro López (inkel)"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/inkel/haproxy-ruby"
s.summary = 'HAProxy interface for reading statistics or managing servers (requires HAProxy 1.4+)'
s.description = 'This gem is intended for use as a HAProxy interface when you need to read statistics or if you like to manage proxies thru Ruby'
s.rubyforge_project = "haproxy"
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