-
Notifications
You must be signed in to change notification settings - Fork 9
/
ServiceStack.podspec
29 lines (24 loc) · 1.12 KB
/
ServiceStack.podspec
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
Pod::Spec.new do |s|
s.name = "ServiceStack"
s.version = "6.0.1"
s.summary = "Swift ServiceStack Service Client"
s.description = <<-DESC
ServiceStack's Add ServiceStack Reference feature lets iOS developers
generate an native typed Swift API for your ServiceStack Services
DESC
s.homepage = "https://github.com/ServiceStack/ServiceStack.Swift"
s.license = 'Copyright (c) 2013-present ServiceStack, Inc. All rights reserved.'
s.author = { "ServiceStack, Inc" => "[email protected]" }
s.source = { :git => "https://github.com/ServiceStack/ServiceStack.Swift.git", :tag => s.version.to_s }
s.swift_version = "6.0"
s.ios.deployment_target = "15.0"
s.osx.deployment_target = "13.0"
s.watchos.deployment_target = "8.0"
s.tvos.deployment_target = "15.0"
s.requires_arc = true
#s.public_header_files = 'Pod/Classes/**/*.h'
s.source_files = "Sources/**/*"
#s.resources = 'Source/**/*.{bundle,png,lproj}'
#s.resource_bundles = { "ServiceStack" => ["Resources/*.lproj"] }
s.frameworks = "Foundation"
end