-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSanta.podspec
More file actions
21 lines (18 loc) · 882 Bytes
/
Santa.podspec
File metadata and controls
21 lines (18 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'Santa'
s.version = '0.8.3'
s.summary = 'A resource based network communication lib'
s.description = <<-DESC
Define your backend resources once and reuse them wherever you like. All the network related code
is handled in a single place and can be easily monitored. Benefit from a clear and readable network communication
api.
DESC
s.homepage = 'https://github.com/kurzdigital/Santa'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Christian Braun' => 'christian.braun@theempathicdev.de' }
s.source = { :git => 'https://github.com/kurzdigital/Santa.git', :tag => s.version.to_s }
s.swift_version = "5.0"
s.ios.deployment_target = '12.0'
s.source_files = 'Sources/Santa/**/*.swift'
s.frameworks = 'UIKit'
end