forked from escoz/QuickDialog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
QuickDialog.podspec
26 lines (22 loc) · 960 Bytes
/
QuickDialog.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
Pod::Spec.new do |s|
s.name = 'QuickDialog'
s.version = '0.8'
s.platform = :ios, '5.0'
s.license = 'Apache License, Version 2.0'
s.summary = 'Quick and easy dialog screens for iOS.'
s.homepage = 'http://escoz.com/quickdialog'
s.author = { 'Eduardo Scoz' => '[email protected]' }
s.source = { :git => 'https://github.com/escoz/QuickDialog.git', :tag => "#{s.version}" }
s.description = 'QuickDialog allows you to create HIG-compliant iOS forms for your apps without ' \
'having to directly deal with UITableViews, delegates and data sources. Fast ' \
'and efficient, you can create forms with multiple text fields, or with ' \
'thousands of items with no sweat!'
s.source_files = 'quickdialog', '*.{h,m}'
s.requires_arc = true
s.frameworks = 'MapKit', 'CoreLocation'
s.prefix_header_contents = <<-EOS
#ifdef __OBJC__
#import "QuickDialog.h"
#endif
EOS
end