forked from pmusolino/Wormholy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Wormholy.podspec
20 lines (20 loc) · 899 Bytes
/
Wormholy.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "Wormholy"
s.version = "1.5.1"
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" => "[email protected]" }
s.social_media_url = "https://twitter.com/pmusolino"
s.ios.deployment_target = "9.0"
s.source = { :git => "https://github.com/pmusolino/Wormholy.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*.{swift,h,m}"
s.public_header_files = "Sources/**/*.h"
s.resource_bundles = {
'Wormholy' => ['Sources/**/*.storyboard', 'Sources/**/*.xib', 'Sources/**/*.{css,js}']
}
s.frameworks = "Foundation"
end