forked from BelovedRobot/PingPong
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPingPong.podspec
More file actions
22 lines (21 loc) · 870 Bytes
/
Copy pathPingPong.podspec
File metadata and controls
22 lines (21 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "PingPong"
s.version = "0.3.5"
s.summary = "A Beloved Robot framework that supports background, foreground, and offline json document syncing"
s.homepage = "https://github.com/BelovedRobot/PingPong"
s.license = "MIT"
s.authors = { "Zane Kellog" => "zane@belovedrobot.com", "Juan Pereira" => "juan@belovedrobot.com" }
s.social_media_url = "http://twitter.com/Belovedrobot"
s.platform = :ios, "10.0"
s.source = { :git => 'https://github.com/BelovedRobot/PingPong.git', :tag => '0.3.4' }
s.source_files = "PingPong", "PingPong/*.{h,m,swift}"
s.resource_bundles = {
'PingPong' => [
'PingPong/**/*.sql'
]
}
s.dependency 'SwiftyJSON'
s.dependency 'Alamofire', '~> 4.4'
s.dependency 'FMDB'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3' }
end