Fileable.swift/Fileable.podspec

25 lines
952 B
Ruby

Pod::Spec.new do |s|
s.name = 'Fileable'
s.version = '0.1.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'A short description of Fileable.'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
TODO: Add long description of the pod here.
DESC
s.homepage = 'https://github.com/Labbiness/Fileable'
s.authors = { 'PROJECT_OWNER' => 'USER_EMAIL' }
s.source = { :git => 'https://github.com/Labbiness/Fileable.git', :tag => s.version }
s.ios.deployment_target = '8.0'
s.source_files = 'Source/*.{h,m,swift}'
s.resource_bundles = {
'Fileable' => ['Resources/**/*.{png}']
}
end