-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMMWeakValue.podspec
More file actions
24 lines (17 loc) · 926 Bytes
/
MMWeakValue.podspec
File metadata and controls
24 lines (17 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "MMWeakValue"
s.version = "0.1.0"
s.summary = "MMWeakValue. A small wrapper that has a weak reference to objects you don't want to retain strongly."
s.description = <<-DESC
MMWeakValue. A small wrapper that has a weak reference to objects you don't want to retain strongly. This is good for having a weak references in collections.
DESC
s.homepage = "https://github.com/mcmurrym/MMWeakValue"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Matt" => "mattmcmurry@gmail.com" }
s.social_media_url = "http://twitter.com/mcmurrym"
s.platform = :ios, '5.0'
s.source = { :git => "https://github.com/mcmurrym/MMWeakValue.git", :tag => "0.1.0" }
s.source_files = "classes", "classes/**/*.{h,m}"
s.public_header_files = "classes/**/*.h"
s.requires_arc = true
end