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