forked from pusher/libPusher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
31 lines (24 loc) · 884 Bytes
/
Podfile
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
# This podfile is intended for development on libPusher.
#
# If you are working on libPusher, you do not need to have CocoaPods installed
# unless you want to install new development dependencies as the Pods directory
# is part of the source tree.
#
platform :ios, :deployment_target => '5.0'
inhibit_all_warnings!
pod 'Reachability', '~> 3.1'
pod 'SocketRocket', '0.3.1-beta2'
pod 'ReactiveCocoa', '~> 2.1'
post_install do |installer|
# we don't want to link static lib to the icucore dylib or it will fail to build
config_file_path = File.join("Pods", "Pods.xcconfig")
File.open("config.tmp", "w") do |io|
io << File.read(config_file_path).gsub(/-licucore/, '')
end
FileUtils.mv("config.tmp", config_file_path)
end
target :specs, :exclusive => true do
link_with ['Functional Specs', 'UnitTests']
pod 'Kiwi', '~> 2.3'
pod 'OHHTTPStubs', '~> 3.0'
end