-
Notifications
You must be signed in to change notification settings - Fork 20
/
adhearsion.gemspec
59 lines (55 loc) · 2.5 KB
/
adhearsion.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "adhearsion/version"
Gem::Specification.new do |s|
s.name = "adhearsion"
s.version = Adhearsion::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Jay Phillips", "Jason Goecke", "Ben Klang", "Ben Langfeld"]
s.email = "dev&Adhearsion.com"
s.homepage = "http://adhearsion.com"
s.summary = "Adhearsion, open-source telephony development framework"
s.description = "Adhearsion is an open-source telephony development framework"
s.date = Date.today.to_s
s.files = `git ls-files`.split("\n")
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"]
# Runtime dependencies
s.add_runtime_dependency 'bundler', [">= 1.0.10"]
s.add_runtime_dependency 'punchblock', [">= 0.12.0"]
s.add_runtime_dependency 'logging', [">= 1.6.1"]
s.add_runtime_dependency 'adhearsion-loquacious', [">= 1.9.0"]
s.add_runtime_dependency 'activesupport', [">= 3.0.10"]
# i18n is only strictly a dependency for ActiveSupport >= 3.0.0
# Since it doesn't conflict with <3.0.0 we'll require it to be
# on the safe side.
s.add_runtime_dependency 'i18n', [">= 0.5.0"]
s.add_runtime_dependency 'json'
s.add_runtime_dependency 'thor'
s.add_runtime_dependency 'rake'
s.add_runtime_dependency 'pry'
s.add_runtime_dependency 'uuid'
s.add_runtime_dependency 'future-resource', [">= 0.0.2"]
s.add_runtime_dependency 'ruby_speech', [">= 0.4.0"]
s.add_runtime_dependency 'countdownlatch'
s.add_runtime_dependency 'has-guarded-handlers', [">= 1.1.0"]
s.add_runtime_dependency 'girl_friday'
s.add_runtime_dependency 'jruby-openssl' if RUBY_PLATFORM == 'java'
s.add_runtime_dependency 'ffi', [">= 1.0.11"]
s.add_runtime_dependency 'celluloid', [">= 0.9.0"]
s.add_runtime_dependency 'deep_merge'
# Development dependencies
s.add_development_dependency 'rspec', ["~> 2.7.0"]
s.add_development_dependency 'flexmock'
s.add_development_dependency 'activerecord', [">= 3.0.10"]
s.add_development_dependency 'simplecov'
s.add_development_dependency 'simplecov-rcov'
s.add_development_dependency 'ci_reporter'
s.add_development_dependency 'yard'
s.add_development_dependency 'guard-rspec'
s.add_development_dependency 'guard-cucumber'
s.add_development_dependency 'ruby_gntp'
s.add_development_dependency 'cucumber'
s.add_development_dependency 'aruba'
end