-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebAuthentication.podspec
More file actions
35 lines (28 loc) · 1.22 KB
/
WebAuthentication.podspec
File metadata and controls
35 lines (28 loc) · 1.22 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 WebAuthentication.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'WebAuthentication'
s.version = '1.0.0'
s.summary = 'Web authentication made easier'
s.description = <<-DESC
Authenticator handles authentication in the corresponding web environmnet depending on the iOS version.
DESC
s.homepage = 'https://github.com/InQBarna/WebAuthentication'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'InQBarna' => 'alexis.katsaprakakis@inqbarna.com' }
s.source = { :git => 'https://github.com/InQBarna/WebAuthentication.git', :tag => s.version.to_s }
s.ios.deployment_target = '15.0'
s.swift_version = '5.5'
s.source_files = 'Sources/**/*.swift'
# s.resource_bundles = {
# 'WebAuthentication' => ['WebAuthentication/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end