-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathRealmMapView.podspec
More file actions
18 lines (18 loc) · 910 Bytes
/
RealmMapView.podspec
File metadata and controls
18 lines (18 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "RealmMapView"
s.version = "2.3"
s.summary = "Drop-in clustering map interface for Realm Swift objects"
s.description = <<-DESC
The RealmMapView class creates an interface object that inherits MKMapView and manages fetching and displaying annotations for a Realm Swift object class that contains coordinate data.
DESC
s.homepage = "https://github.com/bigfish24/ABFRealmMapView"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Adam Fish" => "af@realm.io" }
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/bigfish24/ABFRealmMapView.git", :tag => "v#{s.version}" }
s.source_files = "RealmMapView/*.{h,swift}"
s.requires_arc = true
s.dependency "RealmSwift", ">= 3.0.0"
s.dependency "ABFRealmMapView", ">=#{s.version}"
s.dependency "RBQSafeRealmObject"
end