-
Notifications
You must be signed in to change notification settings - Fork 108
/
Lock.podspec
30 lines (23 loc) · 1.62 KB
/
Lock.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
Pod::Spec.new do |s|
s.name = "Lock"
s.version = '2.24.1'
s.summary = "A library that uses Auth0 for Authentication with Native Look & Feel"
s.description = <<-DESC
[![Auth0](https://i.cloudup.com/1vaSVATKTL.png)](http://auth0.com)
Auth0 is a SaaS that helps you with Authentication and Authorization. You can use Social Providers (Like Facebook, Google, Twitter, etc.), Enterprise Providers (Active Directory, LDap, Windows Azure AD, SAML, etc.) and a Username/Password store which can be saved either by us or by you. We have SDKs for the most common platforms (Ruby, Node, iOS, Angular, etc.) so that with a couple lines of code, you can get the Authentication for your app implemented. Let us worry about Authentication so that you can focus on the core of your business.
DESC
s.homepage = "https://github.com/auth0/Lock.swift"
s.license = 'MIT'
s.authors = { "Auth0" => "support@auth0.com" }, { "Hernan Zalazar" => "hernan@auth0.com" }, { "Martin Walsh" => "martin.walsh@auth0.com" }
s.source = { :git => "https://github.com/auth0/Lock.swift.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/auth0'
s.ios.deployment_target = "9.0"
s.requires_arc = true
s.dependency 'Auth0', '~> 1.31'
s.default_subspecs = 'Classic'
s.subspec 'Classic' do |classic|
classic.ios.source_files = "Lock/**/*.{swift,h,m}"
classic.ios.resource = ["Lock/*.xcassets", "Lock/*.lproj", "Lock/passwordless_country_codes.plist"]
end
s.swift_versions = ['4.0', '4.1', '4.2', '5.0', '5.1', '5.2', '5.3', '5.4', '5.5']
end