-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathem-statsd-ruby.gemspec
More file actions
27 lines (21 loc) · 1.01 KB
/
em-statsd-ruby.gemspec
File metadata and controls
27 lines (21 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'em_statsd/version'
Gem::Specification.new do |gem|
gem.name = 'em-statsd-ruby'
gem.version = EMStatsd::VERSION
gem.homepage = 'https://github.com/Arugin/em-statsd-ruby'
gem.author = 'Valery Mayatsky'
gem.email = 'valerymayatsky@gmail.com'
gem.description = 'An Event Machine wrapper around Ruby Statsd client.'
gem.summary = 'EM::Statsd is a simple async wrapper around the ruby Statsd client. It uses EventMachine Connection class to push data around.'
gem.add_dependency 'eventmachine', '> 1.0'
gem.add_dependency 'statsd-ruby', '= 1.3.0'
gem.add_development_dependency 'bundler', '~> 1.0'
gem.license = 'MIT'
gem.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.require_paths = ['lib']
end