-
Notifications
You must be signed in to change notification settings - Fork 4
/
Weakify.podspec
31 lines (28 loc) · 1.21 KB
/
Weakify.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Pod::Spec.new do |s|
s.name = "Weakify"
s.version = "0.5.0"
s.summary = "Weakly associate an object with a reference to one of its methods"
s.description = <<-DESC
Weakify is a µframework providing some commonly useful variations of the weakify() function. weakify() is primarily a way to be able to use a method on a class as a closure value that would be managed by some other component, but in a way that prevents memory leaks from occurring.
DESC
s.homepage = "https://github.com/klundberg/Weakify"
s.license = 'MIT'
s.author = { "Kevin Lundberg" => "[email protected]" }
s.source = { :git => "https://github.com/klundberg/Weakify.git", :tag => "v#{s.version}" }
s.social_media_url = 'https://twitter.com/kevlario'
s.platforms = {
:ios => "8.0",
:osx => "10.9",
:watchos => "2.0",
:tvos => "9.0"
}
s.source_files = 'Sources/Weakify/*.swift'
# s.test_spec 'Tests' do |test_spec|
# test_spec.source_files = 'Tests/WeakifyTests/*.swift'
# test_spec.platforms = {
# :ios => "8.0",
# :osx => "10.9",
# :tvos => "9.0"
# }
# end
end