diff --git a/SwiftAutoLayout.podspec b/SwiftAutoLayout.podspec new file mode 100644 index 0000000..9c6d14c --- /dev/null +++ b/SwiftAutoLayout.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "SwiftAutoLayout" + s.version = "1.0.0" + s.summary = "Tiny Swift SDL for Autolayout" + s.homepage = "https://github.com/indragiek/SwiftAutoLayout" + s.author = { "Indragie Karunatne" => "i@indragie.com" } + s.license = "MIT" + s.platform = :ios + s.ios.deployment_target = "8.0" + s.source = { :git => "https://github.com/indragiek/SwiftAutoLayout.git", :tag => "#{s.version}" } + s.source_files = "Sources/*.{swift}" + s.framework = "UIKit" +end