-
Notifications
You must be signed in to change notification settings - Fork 0
/
DocuSign.eSign.podspec
executable file
·36 lines (28 loc) · 1.21 KB
/
DocuSign.eSign.podspec
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
#
# Be sure to run `pod lib lint DocuSignESignClient.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "DocuSign.eSign"
s.version = "1.0.1"
s.summary = "DocuSign REST API"
s.description = <<-DESC
The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
DESC
s.platform = :ios, '7.0'
s.requires_arc = true
s.framework = 'SystemConfiguration'
s.homepage = "https://www.docusign.com/developer-center"
s.license = "LICENSE"
s.source = { :git => "https://github.com/gsnavin/DocuSign.eSign.git", :tag => "#{s.version}" }
s.author = { "Dev Center" => "[email protected]" }
s.source_files = 'DocuSign.eSign/*'
s.public_header_files = 'DocuSign.eSign/*.h'
s.dependency 'AFNetworking', '~> 2.3'
s.dependency 'JSONModel', '~> 1.1'
s.dependency 'ISO8601', '~> 0.3'
end