forked from honcheng/PaperFold-for-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPaperFold.podspec
19 lines (19 loc) · 864 Bytes
/
PaperFold.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "PaperFold"
s.version = "1.1"
s.summary = "Paper folding animation for iOS."
s.description = <<-DESC
PaperFold is a simple iOS control that allows hiding of views on the
left and right side of the screen by dragging the middle view.
DESC
s.homepage = "http://www.honcheng.com/2012/07/PaperFold-for-iOS"
s.license = 'MIT'
s.author = { "Muh Hon Cheng" => "honcheng@gmail.com" }
s.source = { :git => "https://github.com/honcheng/PaperFold-for-iOS.git", :tag => "#{s.version}" }
s.platform = :ios, '5.0'
source_files = 'PaperFold/PaperFold/PaperFold'
s.source_files = source_files
s.resources = "#{source_files}/PaperFoldResources.bundle/*.png"
s.framework = 'QuartzCore'
s.requires_arc = true
end