-
Notifications
You must be signed in to change notification settings - Fork 136
/
GHSidebarNav.podspec
23 lines (19 loc) · 1.17 KB
/
GHSidebarNav.podspec
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 = "GHSidebarNav"
s.version = "1.0.0"
s.summary = "A clone of the new Facebook iOS UI paradigm."
s.description = <<-DESC
A clone of the new Facebook iOS UI paradigm; a sidebar navigation table that is revealed by sliding the main content panel to the right. The search goes full-screen and everything supports the standard orientations.
This project uses the Container View Controller methods introduced in iOS 5.0 so, it won't work on any version prior.
This project uses ARC so, you'll need Mac OS 10.7+ (Lion) and Xcode 4.2.1+ to build it.
DESC
s.homepage = "https://github.com/gresrun/GHSidebarNav"
s.license = { :type => 'Apache License, Version 2.0 ', :file => 'LICENSE' }
s.author = { "Gregory Haines" => "[email protected]" }
s.source = { :git => "https://github.com/gresrun/GHSidebarNav.git", :commit => :head }
s.source_files = 'NSObject+Subscripts.h', 'GHSidebarNav/**/*.{h,m}'
s.platform = :ios, '5.0'
s.resources = "GHSidebarNav/Images/*.png"
s.requires_arc = true
s.prefix_header_contents = %{#ifdef __OBJC__\n#import "NSObject+Subscripts.h"\n#endif}
end