Skip to content

Commit

Permalink
add podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
mkeiser committed Jan 29, 2017
1 parent d1cd42b commit fcc73ad
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions SwiftUTI.podspec
@@ -0,0 +1,46 @@
#
# Be sure to run `pod lib lint SwiftUTI.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#

Pod::Spec.new do |s|
s.name = 'SwiftUTI'
s.version = '1.0.0'
s.summary = 'A swift wrapper around Apples Universal Type Identifier functions.'

# 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
DESC

s.homepage = 'https://github.com/mkeiser/SwiftUTI'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'mkeiser' => 'matthias@tristan-inc.com' }
s.source = { :git => 'https://github.com/mkeiser/SwiftUTI.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'

s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'

s.source_files = 'SwiftUTI/Classes/**/*'

spec.osx.framework = 'CoreServices'
spec.ios.framework = 'MobileCoreServices'

# s.resource_bundles = {
# 'SwiftUTI' => ['SwiftUTI/Assets/*.png']
# }

# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end

0 comments on commit fcc73ad

Please sign in to comment.