forked from Clever/ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCleverSDK.podspec
More file actions
35 lines (31 loc) · 1.41 KB
/
CleverSDK.podspec
File metadata and controls
35 lines (31 loc) · 1.41 KB
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 CleverSDK.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 = "CleverSDK"
s.version = "0.0.1"
s.summary = "A simple iOS library to access Clever Instant Login"
s.description = <<-DESC
CleverSDK provides developers with a simple library to access Clever Instant Login.
The SDK includes a Login button (the `CLVLoginButton`) that can be added to any `UIView`.
The SDK returns an `access_token` to the user that can be used to make calls to the Clever API.
DESC
s.homepage = "https://github.com/Clever/ios-sdk"
s.license = 'Apache 2.0'
s.authors = { "Nikhil Pandit" => "nikhil.pandit@clever.com", "Clever Support" => "tech-support@clever.com" }
s.source = { :git => "https://github.com/Clever/ios-sdk.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/clever'
s.documentation_url = "https://dev.clever.com/"
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'CleverSDK/Classes/**/*'
s.public_header_files = 'CleverSDK/Classes/**/*.h'
s.dependency 'AFNetworking', '~> 2.5'
s.dependency "PocketSVG"
s.dependency "SSKeychain"
end