This repository has been archived by the owner on Jan 16, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 288
/
ParseUI.podspec
38 lines (34 loc) · 1.71 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
37
38
Pod::Spec.new do |s|
s.name = 'ParseUI'
s.version = '1.2.0'
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 Community'
s.social_media_url = 'https://twitter.com/ParsePlatform'
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 = '7.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/QueryCollectionViewController/*.h',
'ParseUI/Classes/ProductTableViewController/*.h',
'ParseUI/Classes/Views/*.h',
'ParseUI/Classes/Cells/*.h',
'ParseUI/Other/*.h'
s.resource_bundles = { 'ParseUI' => ['ParseUI/Resources/Localization/*.lproj'] }
s.frameworks = 'Foundation',
'UIKit',
'CoreGraphics',
'QuartzCore'
s.dependency 'Bolts/Tasks', '~> 1.3'
s.dependency 'Parse', '~> 1.9'
end