-
Notifications
You must be signed in to change notification settings - Fork 22
/
PlainPing.podspec
28 lines (21 loc) · 982 Bytes
/
PlainPing.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
Pod::Spec.new do |s|
s.name = "PlainPing"
s.version = "0.5.2"
s.summary = "a very plain ping interface in swift"
# s.description = <<-DESC
# Ping from your iOS App
# DESC
s.homepage = "https://github.com/naptics/PlainPing"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Jonas Schoch" => "[email protected]" }
s.source = { :git => "https://github.com/naptics/PlainPing.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/naptics'
s.platforms = { :ios => "8.0", :osx => "10.11" }
s.requires_arc = true
s.xcconfig = { 'SWIFT_INSTALL_OBJC_HEADER' => 'NO' }
s.source_files = 'Sources/PlainPing/*', 'Sources/SimplePing/include/*', 'Sources/SimplePing/*'
#s.resource_bundles = {
# 'PlainPing' => ['Pod/Assets/*.png']
#}
end