-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathKVOMutableArray.podspec
44 lines (38 loc) · 1.83 KB
/
KVOMutableArray.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
32
33
34
35
36
37
38
39
40
41
42
43
44
#
# Be sure to run `pod lib lint KVOMutableArray.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "KVOMutableArray"
s.version = "2.2.0"
s.summary = "A mutable array which can be key value observed (KVO)."
s.description = <<-DESC
KVOMutableArray provides the functionality to observe a NSMutableArray.
* Markdown format.
* Don't worry about the indent, we strip it!
DESC
s.homepage = "https://github.com/haifengkao/KVOMutableArray"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Hai Feng Kao" => "[email protected]" }
s.source = { :git => "https://github.com/haifengkao/KVOMutableArray.git", :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.platform = :ios, '8.0'
s.requires_arc = true
s.subspec 'Core' do |sp|
sp.source_files = 'KVOMutableArray/Classes/KVOMutableArray.{h,m}', 'KVOMutableArray/Classes/NSObject+BlockObservation.{h,m}', 'KVOMutableArray/Classes/KVOMutableArrayObserver.{h,m}'
sp.public_header_files = 'KVOMutableArray/Classes/**/{KVOMutableArray,NSObject+BlockObservation}.h'
end
s.subspec 'ReactiveCocoaSupport' do |sp|
sp.dependency 'ReactiveObjC'
sp.dependency 'KVOMutableArray/Core'
sp.source_files = 'KVOMutableArray/Classes/KVOMutableArray+ReactiveCocoaSupport.{h,m}'
end
s.default_subspec = 'Core'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end