Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathruby_ami.gemspec
More file actions
Latest commit
36 lines (30 loc) · 1.42 KB
/
Copy pathruby_ami.gemspec
File metadata and controls
36 lines (30 loc) · 1.42 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
28
29
30
31
32
33
34
35
36
# -*- encoding: utf-8 -*-
$:.pushFile.expand_path("../lib",__FILE__)
require"ruby_ami/version"
Gem::Specification.newdo |s|
s.name="ruby_ami"
s.version=RubyAMI::VERSION
s.authors=["Ben Langfeld","Ben Klang"]
s.email=["ben@langfeld.me","bklang@mojolingo.com"]
s.homepage=""
s.summary=%q{Futzing with AMI so you don't have to}
s.description=%q{A Ruby client library for the Asterisk Management Interface built on Celluloid IO.}
s.rubyforge_project="ruby_ami"
s.required_ruby_version='>= 2.2.0'
s.files=`git ls-files`.split("\n") << 'lib/ruby_ami/lexer.rb'
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"]
s.add_runtime_dependency%q<celluloid-io>,["~> 0.13"]
s.add_runtime_dependency%q<celluloid>,["~> 0.16.0"]
s.add_development_dependency%q<bundler>,["~> 1.0"]
s.add_development_dependency%q<rspec>,["~> 2.5"]
s.add_development_dependency%q<cucumber>,[">= 0"]
s.add_development_dependency%q<yard>,["~> 0.6"]
s.add_development_dependency%q<rake>,[">= 0"]
s.add_development_dependency%q<guard-rspec>
s.add_development_dependency%q<guard-shell>
s.add_development_dependency%q<guard-cucumber>
s.add_development_dependency%q<guard-rake>
s.add_development_dependency%q<benchmark_suite>
end