-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathURLScission.podspec
More file actions
21 lines (20 loc) · 1.02 KB
/
URLScission.podspec
File metadata and controls
21 lines (20 loc) · 1.02 KB
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 |spec|
spec.name = "URLScission"
spec.version = "0.0.1"
spec.summary = "URLSession Log and Mock Framework."
spec.description = <<-DESC
A Framework to log network call and to mock their results
DESC
spec.homepage = "https://github.com/inso-/URLScission"
spec.license = { :type => 'MIT' }
spec.author = { "Thomas Moussajee" => "thomas.moussajee@gmail.com" }
spec.source = { :git => "https://github.com/inso-/URLScission.git", :tag => "#{spec.version}" }
spec.source_files = "URLScission/**/*.swift"
spec.swift_version = "5.0"
spec.ios.deployment_target = '10.0'
spec.osx.deployment_target = '10.12'
spec.watchos.deployment_target = '3.0'
spec.tvos.deployment_target = '10.0'
spec.requires_arc = true
spec.exclude_files = "PlatformURLScissionTests/**/*.swift"
end