forked from pusher/pusher-websocket-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
60 lines (49 loc) · 1022 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
source 'https://github.com/CocoaPods/Specs.git'
workspace 'PusherSwift'
use_frameworks!
def import_pods
pod 'PusherSwift', path: './'
pod 'Starscream', '~> 1.1.3'
pod 'CryptoSwift', '~> 0.3.1'
pod 'ReachabilitySwift', '~> 2.3.3'
end
def import_test_pods
import_pods
pod 'Quick', '0.9.1'
pod 'Nimble', '3.2.0'
end
target 'PusherSwift-iOS' do
project 'PusherSwift'
platform :ios, '9.0'
import_pods
end
target 'PusherSwift-tvOS' do
project 'PusherSwift'
platform :tvos, '9.0'
import_pods
end
target 'PusherSwift-OSX' do
project 'PusherSwift'
platform :osx, '10.11'
import_pods
end
target 'PusherSwiftTests-iOS' do
project 'PusherSwift'
platform :ios, '9.0'
import_test_pods
end
target 'PusherSwiftTests-tvOS' do
project 'PusherSwift'
platform :tvos, '9.0'
import_test_pods
end
target 'PusherSwiftTests-OSX' do
project 'PusherSwift'
platform :osx, '10.11'
import_test_pods
end
target 'iOS Example' do
project 'iOS Example'
platform :ios, '9.0'
import_pods
end