-
Notifications
You must be signed in to change notification settings - Fork 2
/
adhearsion-ivr.gemspec
32 lines (26 loc) · 1.23 KB
/
adhearsion-ivr.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "adhearsion-ivr/version"
Gem::Specification.new do |s|
s.name = "adhearsion-ivr"
s.version = AdhearsionIVR::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Ben Klang", "Ben Langfeld"]
s.email = "[email protected]"
s.homepage = "http://adhearsion.com"
s.summary = "IVR building blocks for Adhearsion applications"
s.description = "This provides a consistent way of implementing Interactive Voice Response prompts, including reprompting and error handling"
s.license = 'MIT'
s.required_ruby_version = '>= 1.9.3'
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"]
s.add_runtime_dependency 'adhearsion', ["~> 3.0.0.beta"]
s.add_runtime_dependency 'state_machine'
s.add_development_dependency %q<bundler>, ["~> 1.0"]
s.add_development_dependency %q<rspec>, ["~> 2.11"]
s.add_development_dependency %q<rake>, [">= 0"]
s.add_development_dependency %q<guard-rspec>
s.add_development_dependency %q<rb-fsevent>, ['~> 0.9']
end