14 lines
602 B
Ruby
14 lines
602 B
Ruby
Pod::Spec.new do |s|
|
|
s.summary = 'A simple iPhone forms library.'
|
|
s.license = 'Apache License, Version 2.0'
|
|
s.source = { :git => 'https://github.com/ittybittydude/IBAForms.git', :tag => '1.0.0' }
|
|
s.source_files = 'library/**/*.{h,m}'
|
|
s.prefix_header_contents = "#ifdef __OBJC__\n #import <CoreData/CoreData.h>\n#endif"
|
|
s.author = { 'Itty Bitty Apps' => 'info@ittybittyapps.com', 'Sadat Rahman' => 'https://twitter.com/sadatrahman' }
|
|
s.version = '1.0.0'
|
|
s.homepage = 'https://github.com/ittybittydude/IBAForms'
|
|
s.name = 'IBAForms'
|
|
s.platform = :ios
|
|
s.framework = 'CoreData'
|
|
end
|