-
Notifications
You must be signed in to change notification settings - Fork 9
/
em-sflow.gemspec
22 lines (18 loc) · 910 Bytes
/
em-sflow.gemspec
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 -*-
require File.expand_path('../lib/em-sflow/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Norman Elton"]
gem.email = ["[email protected]"]
gem.description = "EventMachine-powered sFlow Collector"
gem.summary = "EventMachine-powered sFlow Collector"
gem.homepage = "http://github.com/normelton/em-sflow"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "em-sflow"
gem.require_paths = ["lib"]
gem.version = EventMachine::SFlow::VERSION
gem.extra_rdoc_files = ["README.rdoc"]
gem.rdoc_options = ["--line-numbers", "--inline-source", "--title", "EM-SFLOW", "--main", "README.rdoc"]
gem.add_runtime_dependency "eventmachine", ">= 0.12.10"
end