forked from takashisite/TSPopover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTSPopover.podspec
27 lines (24 loc) · 1.09 KB
/
TSPopover.podspec
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
Pod::Spec.new do |s|
s.name = "TSPopover"
s.version = "0.1.0"
s.summary = "UIPopover like UI for iPhone"
s.description = <<-DESC
UIPopover like UI (with ActionSheet) for iPhone - there is lot's of work still to do.
DESC
s.homepage = "https://github.com/takashisite/TSPopover"
s.screenshots = "https://github.com/takashisite/TSPopover/raw/master/Screenshots/Screenshot_1.png", "https://github.com/takashisite/TSPopover/raw/master/Screenshots/Screenshot_2.png"
s.license = 'MIT'
s.author = { "Pawel 'Kender' Maczewski" => "[email protected]" }
s.source = { :git => "https://github.com/owlcoding/TSPopover.git", :tag => s.version.to_s }
s.platform = :ios, '5.0'
s.ios.deployment_target = '5.0'
# s.osx.deployment_target = '10.7'
s.requires_arc = true
s.source_files = 'TSPopover'
# s.resources = 'Assets'
# s.ios.exclude_files = 'Classes/osx'
# s.osx.exclude_files = 'Classes/ios'
# s.public_header_files = 'Classes/**/*.h'
s.frameworks = 'QuartzCore'
# s.dependency 'JSONKit', '~> 1.4'
end