forked from trispo/KFActionSheet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKFActionSheet.podspec
More file actions
25 lines (21 loc) · 965 Bytes
/
KFActionSheet.podspec
File metadata and controls
25 lines (21 loc) · 965 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
Pod::Spec.new do |s|
s.name = "KFActionSheet"
s.version = "0.1.1"
s.summary = "A customizable action sheet for iPhone (iOS 6+)."
#s.description = <<-DESC
#An optional longer description of KFActionSheet
#* Markdown format.
#* Don't worry about the indent, we strip it!
#DESC
s.homepage = "pods.kf-interactive.com"
s.screenshots = "https://github.com/trispo/KFActionSheet/Screenshots/screenshot.png"
s.license = 'MIT'
s.source = { :git => "https://github.com/trispo/KFActionSheet.git", :tag => s.version.to_s }
s.platform = :ios, '6.0'
s.requires_arc = true
s.source_files = 'Classes/ios'
s.resources = 'Assets'
s.ios.exclude_files = 'Classes/osx'
s.osx.exclude_files = 'Classes/ios'
end