forked from klundberg/Weakify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeakify.podspec
22 lines (20 loc) · 1016 Bytes
/
Weakify.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 = "Weakify"
s.version = "0.4.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/**/*.swift'
end