-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPXTutorialManager.podspec
More file actions
31 lines (28 loc) · 1.02 KB
/
PXTutorialManager.podspec
File metadata and controls
31 lines (28 loc) · 1.02 KB
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
29
30
31
Pod::Spec.new do |s|
s.name = "PXTutorialManager"
s.version = "0.1.3"
s.summary = "A tutorial with an image carousel."
s.description = <<-DESC
Loads a JSON description for a tutorial and displays images and descriptions in a neat carousel.
DESC
s.homepage = "https://github.com/pixio/PXTutorialManager/"
s.license = 'MIT'
s.author = { "Daniel Blakemore" => "[email protected]" }
s.source = {
:git => "https://github.com/pixio/PXTutorialManager.git",
:tag => s.version.to_s
}
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'PXTutorialManager' => ['Pod/Assets/PXTutorialManager/*.{png,json}']
}
s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit'
s.dependency 'UIColor-MoreColors'
s.dependency 'PXButton'
s.dependency 'PXUtilities'
s.dependency 'PXImageView'
s.dependency 'iCarousel', '~> 1.8'
end