forked from parse-community/ParseUI-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParseUI.podspec
36 lines (32 loc) · 1.55 KB
/
ParseUI.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
28
29
30
31
32
33
34
35
36
Pod::Spec.new do |s|
s.name = 'ParseUI'
s.version = '1.0.2'
s.license = { :type => 'SDK', :file => 'LICENSE'}
s.homepage = 'https://www.parse.com/'
s.summary = 'ParseUI is a library of useful User Interface components for the Parse iOS SDK.'
s.authors = 'Parse'
s.social_media_url = 'https://twitter.com/ParseIt'
s.source = { :git => "https://github.com/ParsePlatform/ParseUI-iOS.git", :tag => s.version.to_s }
s.platform = :ios
s.requires_arc = true
s.ios.deployment_target = '6.0'
s.prepare_command = <<-CMD
ruby ParseUI/Scripts/convert_images.rb \
ParseUI/Resources/Images/ \
ParseUI/Generated/PFResources
CMD
s.source_files = "ParseUI/**/*.{h,m}"
s.public_header_files = 'ParseUI/Classes/LogInViewController/*.h',
'ParseUI/Classes/SignUpViewController/*.h',
'ParseUI/Classes/QueryTableViewController/*.h',
'ParseUI/Classes/ProductTableViewController/*.h',
'ParseUI/Classes/Views/*.h',
'ParseUI/Classes/Cells/*.h',
'ParseUI/Other/*.h'
s.frameworks = 'Foundation',
'UIKit',
'CoreGraphics',
'QuartzCore'
s.dependency 'Parse', '~> 1.5'
s.dependency 'ParseFacebookUtils', '~> 1.5'
end