-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathBentoMap.podspec
More file actions
23 lines (17 loc) · 926 Bytes
/
BentoMap.podspec
File metadata and controls
23 lines (17 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'BentoMap'
s.version = '0.3.3'
s.summary = 'Map Clustering for Swift.'
s.description = <<-DESC
A library to handle storing map annotations in a Quadtrees, and for returning
clusters of annotations to allow easy grouping of map items based on proximity.
DESC
s.homepage = 'https://github.com/Raizlabs/BentoMap'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Michael Skiba' => 'mike.skiba@raizlabs.com', 'Rob Visentin' => 'rob.visentin@raizlabs.com', 'Matt Buckley' => 'matt.buckley@raizlabs.com' }
s.source = { :git => 'https://github.com/Raizlabs/BentoMap.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/atelierclkwrk'
s.ios.deployment_target = '8.0'
s.source_files = 'BentoMap/**/*'
s.frameworks = 'Foundation', 'MapKit'
end