-
Notifications
You must be signed in to change notification settings - Fork 29
/
SFBPopovers.podspec
20 lines (19 loc) · 1.01 KB
/
SFBPopovers.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "SFBPopovers"
s.version = "1.1.0"
s.summary = "A framework implementing customizable popover windows."
s.description = <<-DESC
This framework implements popover windows- windows that, to the user, logically belong to another window and are visually attached to the parent window.
An `SFBPopover` has a customizable appearance including border thickness, color, and radius, attachment point, and arrow appearance.
DESC
s.homepage = "https://github.com/sbooth/SFBPopovers"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.author = { "Stephen F. Booth" => "[email protected]" }
s.social_media_url = "https://twitter.com/sbooth"
s.platform = :osx, "10.7"
s.source = { :git => "https://github.com/sbooth/SFBPopovers.git", :tag => "v1.1.0" }
s.source_files = "SFBPopover.{h,m}", "SFBPopoverWindow.{h,m}", "SFBPopoverWindowFrame.{h,m}"
s.public_header_files = "SFBPopover.h"
s.requires_arc = true
s.frameworks = "Cocoa", "QuartzCore"
end