-
Notifications
You must be signed in to change notification settings - Fork 0
/
Krampus.podspec
22 lines (17 loc) · 1.03 KB
/
Krampus.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'Krampus'
s.version = '0.5.0'
s.summary = 'Add authorization to the web requests made with the resource based network lib Santa. Currently supports Keycloak'
s.description = <<-DESC
Provides an authorization plugin for the resource based networking lib Santa. Currently supported are the basic operations for Keycloak. These are login with
auth code or username and password aswell als logout and refreshing access tokens. The tokens are stored safely within the users keychain.
DESC
s.homepage = 'https://github.com/kurzdigital/Krampus'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'KURZ Digital Solutions GmbH & Co. KG' => '[email protected]' }
s.source = { :git => 'https://github.com/kurzdigital/krampus.git', :tag => s.version.to_s }
s.swift_version = "5.0"
s.ios.deployment_target = '12.0'
s.source_files = 'Krampus/Classes/**/*'
s.dependency 'Santa', '~> 0.7'
end