forked from vangberg/librevox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
librevox.gemspec
40 lines (39 loc) · 1.24 KB
/
librevox.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
30
31
32
33
34
35
36
37
38
39
Gem::Specification.new do |s|
s.name = "librevox"
s.version = "0.3"
s.date = "2010-09-30"
s.summary = "Ruby library for interacting with FreeSWITCH."
s.email = "harry@vangberg.name"
s.homepage = "http://github.com/ichverstehe/librevox"
s.description = "EventMachine-based Ruby library for interacting with the
open source telephony platform FreeSwitch."
s.authors = ["Harry Vangberg"]
s.files = [
"README.md",
"LICENSE",
"TODO",
"Rakefile",
"librevox.gemspec",
"lib/librevox.rb",
"lib/librevox/applications.rb",
"lib/librevox/command_socket.rb",
"lib/librevox/commands.rb",
"lib/librevox/response.rb",
"lib/librevox/listener/base.rb",
"lib/librevox/listener/inbound.rb",
"lib/librevox/listener/outbound.rb"
]
s.test_files = [
"spec/helper.rb",
"spec/librevox/listener.rb",
"spec/librevox/spec_applications.rb",
#"spec/librevox/spec_command_socket.rb",
"spec/librevox/spec_commands.rb",
"spec/librevox/spec_response.rb",
"spec/librevox/listener/spec_inbound.rb",
"spec/librevox/listener/spec_outbound.rb"
]
s.add_dependency "eventmachine", "~> 0.12.10"
s.add_development_dependency "bacon", "~> 1.1"
s.add_development_dependency "rr", "~> 1"
end