forked from stevegraham/twilio-rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwilio-rb.gemspec
25 lines (19 loc) · 950 Bytes
/
twilio-rb.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
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'twilio-rb'
s.version = '0.3.1'
s.summary = 'Interact with the Twilio API in a nice Ruby way.'
s.description = 'A nice Ruby wrapper for the Twilio REST API'
s.required_ruby_version = '>= 1.8.7'
s.author = 'Stevie Graham'
s.email = '[email protected]'
s.homepage = 'http://github.com/stevegraham/twilio-rb'
s.add_dependency 'activesupport', '>= 3.0.0'
s.add_dependency 'yajl-ruby', '>= 0.7.7'
s.add_dependency 'httparty', '>= 0.6.1'
s.add_dependency 'webmock', '>= 1.3.5'
s.add_dependency 'builder', '>= 2.1.2'
s.files = Dir['README.md', 'lib/**/*']
s.require_path = 'lib'
s.has_rdoc = false
end