forked from firebase/geofire-objc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeoFire.podspec
25 lines (23 loc) · 904 Bytes
/
GeoFire.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
Pod::Spec.new do |s|
s.name = "GeoFire"
s.version = "4.3.0"
s.summary = "Realtime location queries with Firebase."
s.homepage = "https://github.com/firebase/geofire-objc"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = "Firebase"
s.source = { :git => "https://github.com/firebase/geofire-objc.git", :tag => 'v' + s.version.to_s }
s.ios.deployment_target = '10.0'
s.requires_arc = true
s.default_subspec = 'Database'
s.subspec 'Database' do |db|
db.ios.dependency 'Firebase/Database', '> 7.0.0', '< 9.0.0'
db.ios.dependency 'GeoFire/Utils'
db.public_header_files = "GeoFire/API/*"
db.source_files = ["GeoFire/Implementation/*", "GeoFire/API/*"]
db.frameworks = 'FirebaseDatabase'
end
s.subspec 'Utils' do |utils|
utils.source_files = "GeoFire/Utils/*"
utils.frameworks = 'CoreLocation'
end
end