Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
srstomp committed Sep 14, 2017
1 parent 5baf688 commit d3026a9
Show file tree
Hide file tree
Showing 7 changed files with 548 additions and 0 deletions.
29 changes: 29 additions & 0 deletions Swutler.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#
# Be sure to run `pod spec lint Swutler.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#

Pod::Spec.new do |s|

s.name = "Swutler"
s.version = "0.0.1"
s.summary = "A small library with handy Swift helpers."
s.requires_arc = true
s.homepage = "https://github.com/im3der/Swutler"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
s.author = "Steve Stomp"

s.platform = :ios
s.ios.deployment_target = "10.0"
# s.watchos.deployment_target = "2.0"
# s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/im3der/Swutler.git", :tag => "#{s.version}" }
s.framework = "UIKit"

s.source_files = "Swutler", "Swutler/**/*.{swift}"
s.exclude_files = "Swutler/Exclude"

end
Loading

0 comments on commit d3026a9

Please sign in to comment.