forked from alexrozanski/PXSourceList
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPXSourceList.podspec
28 lines (24 loc) · 1.16 KB
/
PXSourceList.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
28
Pod::Spec.new do |s|
s.name = 'PXSourceList'
s.version = '2.0.3'
s.author = { 'Alex Rozanski' => '[email protected]' }
s.license = 'BSD'
s.homepage = 'https://github.com/Perspx/PXSourceList'
s.summary = 'A Source List control for OS X.'
s.social_media_url = 'http://twitter.com/alexrozanski'
s.requires_arc = true
s.description = <<-DESC
PXSourceList is an NSOutlineView subclass which provides an easy-to-use
implementation of a sidebar similar to that found in iTunes, iPhoto and
Mail.app.
PXSourceList provides a simple API for displaying *icons* and *badges*
which are often used in Source Lists. The project additionally contains
and NSTableCellView subclass and generic data source model item for quick
and easy setup.
DESC
s.platform = :osx
s.osx.deployment_target = '10.7'
s.public_header_files = 'PXSourceList/*.h'
s.source = { :git => 'https://github.com/Perspx/PXSourceList.git', :tag => '2.0.3' }
s.source_files = 'PXSourceList/**/*.{h,m}'
end