-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathURLScission.podspec
More file actions
26 lines (24 loc) · 1.39 KB
/
Copy pathURLScission.podspec
File metadata and controls
26 lines (24 loc) · 1.39 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
Pod::Spec.new do |spec|
spec.name = "URLScission"
spec.version = "1.0.0"
spec.summary = "See, mock, block, and modify network traffic on Apple platforms."
spec.description = <<-DESC
URLScission is a framework of pluggable interception methods sharing one
engine: log, mock, block, and modify URLSession traffic in your own app via a
URLProtocol. (Injection into other apps on a jailbreak lives in the
URLScissionInject SPM product.)
DESC
spec.homepage = "https://github.com/inso1337/URLScission"
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = { "Thomas Moussajee" => "thomas.moussajee@gmail.com" }
spec.source = { :git => "https://github.com/inso1337/URLScission.git", :tag => "#{spec.version}" }
# CocoaPods ships the dependency-free core only. The jailbreak injection layer
# (URLScissionInject / URLScissionCHooks) is SPM-only.
spec.source_files = "Sources/URLScission/**/*.swift"
spec.swift_version = "5.5"
spec.ios.deployment_target = '12.0'
spec.osx.deployment_target = '10.13'
spec.watchos.deployment_target = '4.0'
spec.tvos.deployment_target = '10.0'
spec.requires_arc = true
end