713c85a6c1
* 0.6: correct library path as the zip contains folder add admob podspec Clean paths should be the same for either platform. Update new pods for 0.6 Replace post_install use to append to pch by prefix_header_file and prefix_header_contents. Only check the master branch on Travis. Remove the use of `config.ios?` or `config.osx?`. Conflicts: CocoaAsyncSocket/0.0.1/CocoaAsyncSocket.podspec
23 lines
965 B
Ruby
23 lines
965 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'QuickDialog'
|
|
s.version = '0.3'
|
|
s.platform = :ios
|
|
s.license = 'Apache License, Version 2.0'
|
|
s.summary = 'Quick and easy dialog screens for iOS'
|
|
s.homepage = 'http://escoz.com/quickdialog-released/'
|
|
s.author = { 'Eduardo Scoz' => 'contact@escoz.com' }
|
|
s.source = { :git => 'git://github.com/escoz/QuickDialog.git', :tag => '0.3' }
|
|
|
|
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'
|
|
s.clean_paths = 'sample', '*.xc*', 'libQuickDialog', 'other'
|
|
s.requires_arc = true
|
|
s.framework = 'MapKit' , 'CoreLocation'
|
|
|
|
s.prefix_header_contents = '#import "QuickDialog.h"'
|
|
end
|