-
Notifications
You must be signed in to change notification settings - Fork 80
/
plivo.gemspec
43 lines (35 loc) · 1.58 KB
/
plivo.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'plivo/version'
Gem::Specification.new do |spec|
spec.name = 'plivo'
spec.version = Plivo::VERSION
spec.authors = ['The Plivo SDKs Team']
spec.email = ['[email protected]']
spec.summary = 'A Ruby SDK to make voice calls & send SMS using Plivo '\
'and to generate Plivo XML'
spec.description = 'The Plivo Ruby SDK makes it simpler to integrate '\
'communications into your Ruby applications using the '\
'Plivo REST API. Using the SDK, you will be able to '\
'make voice calls, send SMS and generate Plivo XML to '\
'control your call flows.'\
''\
'See https://github.com/plivo/plivo-ruby for more information.'
spec.homepage = 'https://github.com/plivo/plivo-ruby'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'bin'
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.0.0'
spec.add_dependency 'faraday', '~> 2.7'
spec.add_dependency 'htmlentities'
spec.add_dependency 'jwt'
spec.add_development_dependency 'bundler', '>= 1.14', '<3.0'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'json'
spec.add_development_dependency 'simplecov'
end