forked from auth0/Auth0.swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAuth0.podspec
More file actions
22 lines (20 loc) · 864 Bytes
/
Auth0.podspec
File metadata and controls
22 lines (20 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
version = `agvtool mvers -terse1`.strip
Pod::Spec.new do |s|
s.name = 'Auth0'
s.version = version
s.summary = "Swift toolkit for Auth0 API"
s.description = <<-DESC
Auth0 API toolkit written in Swift for iOS & OSX apps
DESC
s.homepage = 'https://github.com/auth0/Auth0.swift'
s.license = 'MIT'
s.author = { 'Auth0' => 'support@auth0.com', 'Hernan Zalazar' => 'hernan@auth0.com' }
s.source = { :git => 'https://github.com/auth0/Auth0.swift.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/auth0'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.requires_arc = true
s.dependency 'Alamofire', '~> 2.0'
s.dependency 'JWTDecode', '~> 1.0'
s.source_files = 'Auth0/*.swift'
end