From fcc73adb830bce58749f76f6e5ee22411b470d5c Mon Sep 17 00:00:00 2001 From: Matthias Keiser Date: Sun, 29 Jan 2017 21:03:06 +0100 Subject: [PATCH] add podspec --- SwiftUTI.podspec | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 SwiftUTI.podspec diff --git a/SwiftUTI.podspec b/SwiftUTI.podspec new file mode 100644 index 0000000..7d0d256 --- /dev/null +++ b/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/' + + 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