-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPXViewController.podspec
More file actions
26 lines (22 loc) · 952 Bytes
/
PXViewController.podspec
File metadata and controls
26 lines (22 loc) · 952 Bytes
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
Pod::Spec.new do |s|
s.name = "PXViewController"
s.version = "0.1.8"
s.summary = "A more customizable and colorable nav bar."
s.description = <<-DESC
A set of subclasses for viewcontrollers and `UINavigationController` that allow you to have a title and a subtitle in the nav bar as well as custom font, colors, and more.
DESC
s.homepage = "https://github.com/pixio/PXViewController"
s.license = 'MIT'
s.author = { "Daniel Blakemore" => "[email protected]" }
s.source = {
:git => "https://github.com/pixio/PXViewController.git",
:tag => s.version.to_s
}
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resources = 'Pod/Assets/PXViewController.bundle'
s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit'
s.dependency 'MZAppearance'
end