-
-
Notifications
You must be signed in to change notification settings - Fork 153
/
LifetimeTracker.podspec
22 lines (22 loc) · 1.07 KB
/
LifetimeTracker.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "LifetimeTracker"
s.version = "1.8.3"
s.summary = "Framework to visually warn you when retain cycle / leak happens."
s.description = <<-DESC
Mini framework that can surface retain cycle issues sooner.
DESC
s.homepage = "https://github.com/krzysztofzablocki/LifetimeTracker"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Krzysztof Zablocki" => "[email protected]" }
s.social_media_url = "http://twitter.com/merowing_"
s.ios.deployment_target = "12.0"
s.osx.deployment_target = '10.13'
s.source = { :git => "https://github.com/krzysztofzablocki/LifetimeTracker.git", :tag => s.version.to_s }
s.ios.source_files = "Sources/*.swift", "Sources/iOS/**/*.swift"
s.macos.source_files = "Sources/*.swift"
s.ios.resources = "Sources/Resources/**/*.{xib,storyboard}"
s.resource_bundle = { "LifetimeTracker" => ["Sources/**/*.{strings}"] }
s.ios.frameworks = ["Foundation", "UIKit"]
s.macos.frameworks = ["Foundation"]
s.swift_version = "5.0"
end