forked from firebase/geofire-objc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGeoFire.podspec
27 lines (26 loc) · 1004 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
26
27
Pod::Spec.new do |s|
s.name = "GeoFire"
s.version = "4.0.2"
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.source_files = "GeoFire/**/*.{h,m}"
s.documentation_url = "https://geofire-ios.firebaseapp.com/docs/"
s.ios.deployment_target = '8.0'
s.ios.dependency 'Firebase/Database', '~> 6.0'
s.frameworks = 'CoreLocation', 'FirebaseDatabase'
s.requires_arc = true
s.static_framework = true
s.subspec 'Utils' do |utils|
utils.source_files = [
"GeoFire/**/GFUtils*.[mh]",
"GeoFire/**/GFGeoQueryBounds*.[mh]",
"GeoFire/**/GFGeoHashQuery*.[mh]",
"GeoFire/**/GFGeoHash*.[mh]",
"GeoFire/**/GFBase32Utils*.[mh]",
]
utils.frameworks = 'CoreLocation'
end
end