forked from spreedly/spreedly-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSpreedly.podspec
19 lines (17 loc) · 975 Bytes
/
Spreedly.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "Spreedly"
s.version = "0.2.0"
s.summary = "Spreedly iOS API Client."
s.description = <<-DESC
The Spreedly iOS SDK makes it easy for you to accept a users credit card details inside your iOS app. By creating payment method tokens, Spreedly handles the majority of your PCI compliance issues by preventing sensitive credit card data from ever hitting your servers.
DESC
s.homepage = "https://github.com/spreedly/spreedly-ios"
s.license = 'MIT'
s.author = { "David Santoso" => "david@spreedly.com" }
s.source = { :git => "https://github.com/spreedly/spreedly-ios.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/spreedly'
s.platform = :ios, '9.0'
s.requires_arc = true
s.source_files = 'Spreedly/*.swift'
s.frameworks = 'Foundation'
end