-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathtwilio.gemspec
30 lines (25 loc) · 1006 Bytes
/
twilio.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "twilio/version"
Gem::Specification.new do |s|
s.name = "twilio"
s.version = Twilio::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Phil Misiowiec", "Jonathan Rudenberg", "Alex K Wolfe", "Kyle Daigle", "Jeff Wigal", "Yuri Gadow", "Vlad Moskovets"]
s.email = ["github@webficient.com"]
s.homepage = ""
s.summary = %q{Twilio API Client}
s.description = %q{Twilio API wrapper}
s.rubyforge_project = "twilio"
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_dependency "builder", ">= 2.1.2"
s.add_dependency "httparty", ">= 0.8"
{
'rake' => '~> 0.8.7',
'rspec' => '~> 2.12',
'webmock' => '~> 1.6.2'
}.each { |l, v| s. add_development_dependency l, v }
end