15 lines
738 B
Ruby
15 lines
738 B
Ruby
Pod::Spec.new do |s|
|
|
s.platform = :ios
|
|
s.name = 'YTFExtensions'
|
|
s.version = '0.2.1'
|
|
s.license = 'MIT'
|
|
s.summary = 'YTFExtensions - extensions and categories.'
|
|
s.homepage = 'https://github.com/MobileDevs/YTFExtensions.git'
|
|
s.authors = {'YetiTheFoot' => 'reg.yeti@gmail.com'}
|
|
s.source = { :git => 'https://github.com/MobileDevs/YTFExtensions.git', :tag => '0.2.1'}
|
|
s.source_files = 'YTFExtensions/*'
|
|
s.requires_arc = false
|
|
|
|
s.framework = 'UIKit', 'Foundation', 'QuartzCore', 'CoreData', 'CoreGraphics'
|
|
s.prefix_header_contents = '#import <UIKit/UIKit.h>', '#import <Foundation/Foundation.h>', '#import <QuartzCore/QuartzCore.h>', '#import <CoreData/CoreData.h>', '#import <CoreGraphics/CoreGraphics.h>'
|
|
end |