-
Notifications
You must be signed in to change notification settings - Fork 190
/
SMCalloutView.podspec
17 lines (16 loc) · 991 Bytes
/
SMCalloutView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "SMCalloutView"
s.version = "2.2.0"
s.summary = "A lightweight callout view class for iOS mimicking UICalloutView."
s.description = <<-DESC
SMCalloutView aims to be an exact replica of the private UICalloutView system control.
We all love those "bubbles" you get when clicking pins in MKMapView. But sadly, it's impossible to present this bubble-style "Callout" UI anywhere outside MKMapView. Phooey! So this class painstakingly recreates this handy control for your pleasure.
DESC
s.homepage = "https://github.com/nfarina/calloutview"
s.license = 'Apache License, Version 2.0'
s.author = { "Nick Farina" => "[email protected]" }
s.source = { :git => "https://github.com/nfarina/calloutview.git", :tag => "2.1.5" }
s.platform = :ios, '7.0'
s.source_files = 'SMCalloutView.{h,m}', 'SMClassicCalloutView.{h,m}'
s.requires_arc = true
end