-
Notifications
You must be signed in to change notification settings - Fork 193
/
Copy pathWormholy.podspec
30 lines (27 loc) · 1.16 KB
/
Wormholy.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
30
Pod::Spec.new do |s|
s.name = "Wormholy"
s.version = "2.0.0"
s.summary = "Network debugging made easy"
s.description = <<-DESC
Start debugging iOS network calls like a wizard, without extra code! Wormholy makes debugging quick and reliable.
DESC
s.homepage = "https://github.com/pmusolino/Wormholy"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Paolo Musolino" => "info@codeido.com" }
s.social_media_url = "https://x.com/pmusolino"
s.ios.deployment_target = "16.0"
s.source = { :git => "https://github.com/pmusolino/Wormholy.git", :tag => s.version.to_s }
s.swift_version = "5.0"
s.frameworks = "Foundation", "UIKit", "SwiftUI"
# Include WormholySwift by default
s.default_subspecs = ['WormholyObjC', 'WormholySwift']
s.subspec 'WormholySwift' do |ss|
ss.source_files = 'Sources/WormholySwift/**/*.{swift}'
end
s.subspec 'WormholyObjC' do |ss|
ss.source_files = 'Sources/WormholyObjC/**/*'
ss.dependency 'Wormholy/WormholySwift'
ss.public_header_files = 'Sources/WormholyObjC/**/*.h'
ss.exclude_files = 'Sources/WormholyObjC/module.modulemap'
end
end