forked from mattgallagher/CwlUtils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCwlUtils.podspec
19 lines (16 loc) · 983 Bytes
/
CwlUtils.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "CwlUtils"
s.version = "1.1.0"
s.summary = "A collection of Swift utilities as documented on cocoawithlove.com"
s.description = <<-DESC
Stack traces, system information with sysctl, presentation of unanticipated errors, random number generators, mutexes, dispatch timers, a Result type, copy-on-write double-ended queue, function execution contexts, testing actions over time. See [Cocoa with Love](https://cocoawithlove.com) for more.
DESC
s.homepage = "https://github.com/mattgallagher/CwlUtils"
s.license = { :type => "ISC", :file => "LICENSE.txt" }
s.author = "Matt Gallagher"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.source = { :git => "https://github.com/mattgallagher/CwlUtils.git", :tag => "#{s.version}" }
s.source_files = "Sources/CwlUtils/*.{swift,h}", "Sources/CwlFrameAddress/**/*.{c,h}"
end