forked from pusher/libPusher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
libPusher.podspec
33 lines (28 loc) · 1.11 KB
/
libPusher.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
Pod::Spec.new do |s|
s.name = 'libPusher'
s.version = '1.6'
s.license = 'MIT'
s.summary = 'An Objective-C client for the Pusher.com service'
s.homepage = 'https://github.com/lukeredpath/libPusher'
s.author = 'Luke Redpath'
s.source = { :git => 'https://github.com/lukeredpath/libPusher.git', :tag => 'v1.6' }
s.requires_arc = true
s.header_dir = 'Pusher'
s.default_subspec = 'Core'
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.8'
s.subspec 'Core' do |subspec|
subspec.dependency 'SocketRocket', "0.3.1-beta2"
subspec.source_files = 'Library/**/*.{h,m}'
subspec.private_header_files = 'Library/Private Headers/*'
subspec.xcconfig = {
'GCC_PREPROCESSOR_DEFINITIONS' => 'kPTPusherClientLibraryVersion=@\"1.6\"'
}
end
s.subspec 'ReactiveExtensions' do |subspec|
subspec.dependency 'libPusher/Core'
subspec.dependency 'ReactiveCocoa', '~> 2.1'
subspec.source_files = 'ReactiveExtensions/*'
subspec.private_header_files = '*_Internal.h'
end
end