-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathadhearsion-stats.gemspec
29 lines (24 loc) · 1.03 KB
/
adhearsion-stats.gemspec
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
28
29
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "adhearsion-stats/version"
Gem::Specification.new do |s|
s.name = "adhearsion-stats"
s.version = AdhearsionStats::VERSION
s.authors = ["Justin Aiken"]
s.email = ["jaiken@mojolingo.com"]
s.homepage = "https://github.com/JustinAiken/adhearsion-stats"
s.summary = %q{Adhearsion plugin for stats}
s.description = %q{Adhearsion plugin for stats. Reports via statsd.}
s.license = 'MIT'
s.rubyforge_project = "adhearsion-stats"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.require_paths = ["lib"]
s.add_runtime_dependency %q<adhearsion>, ["~> 2.1"]
s.add_runtime_dependency %q<justinaiken-statsd>
s.add_development_dependency %q<coveralls>, ['>= 0']
s.add_development_dependency %q<bundler>, ["~> 1.0"]
s.add_development_dependency %q<rspec>, ["~> 2.5"]
s.add_development_dependency %q<rake>, [">= 0"]
s.add_development_dependency %q<guard-rspec>
end