forked from docusign/docusign-objc-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated the podspec file to reflect the cocoapod version
- Loading branch information
Showing
1 changed file
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,25 +9,25 @@ | |
|
||
Pod::Spec.new do |s| | ||
s.name = "DocuSignESign" | ||
s.version = "1.0.0" | ||
s.version = "2.1.0" | ||
|
||
s.summary = "DocuSign REST API" | ||
s.summary = "DocuSign REST API Client" | ||
s.description = <<-DESC | ||
The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. | ||
The DocuSign CocoaPod library makes integrating DocuSign into your apps and websites a super fast and painless process. The library is open sourced on GitHub, look for the docusign-obj-client repository. Join the eSign revolution! | ||
DESC | ||
|
||
s.platform = :ios, '7.0' | ||
s.requires_arc = true | ||
|
||
s.framework = 'SystemConfiguration' | ||
|
||
s.homepage = "https://github.com/swagger-api/swagger-codegen" | ||
s.license = "MIT" | ||
s.source = { :git => "https://github.com/swagger-api/swagger-codegen.git", :tag => "#{s.version}" } | ||
s.author = { "Swagger" => "[email protected]" } | ||
s.homepage = "https://cocoapods.org/pods/DocuSignESign" | ||
s.license = "LICENSE" | ||
s.source = { :git => "https://github.com/docusign/docusign-objc-client.git", :tag => "#{s.version}" } | ||
s.author = { "DocuSign" => "[email protected]" } | ||
|
||
s.source_files = 'DocuSignESign/**/*' | ||
s.public_header_files = 'DocuSignESign/**/*.h' | ||
s.source_files = 'sdk/DocuSignESign/*' | ||
s.public_header_files = 'sdk/DocuSignESign/*.h' | ||
|
||
s.dependency 'AFNetworking', '~> 2.3' | ||
s.dependency 'JSONModel', '~> 1.1' | ||
|