-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCleverSDK.podspec
More file actions
30 lines (26 loc) · 1.14 KB
/
CleverSDK.podspec
File metadata and controls
30 lines (26 loc) · 1.14 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
#
# 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 = File.read("VERSION")
s.summary = "A simple iOS library to access Clever Instant Login"
s.description = "CleverSDK provides developers with a simple library to access Clever Instant Login."
s.homepage = "https://github.com/Clever/ios-sdk"
s.license = "Apache 2.0"
s.authors = { "Clever" => "tech-notify@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, "9.0"
s.requires_arc = true
s.public_header_files = "CleverSDK/**/*.h"
s.source_files = "CleverSDK/**/*"
s.exclude_files = "CleverSDK/**/*.plist"
s.dependency "PocketSVG", "~> 0.7"
end