aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Podfile
blob: 50bc37ebd6ac3bce9f18c21a17535919109abf19 (plain)
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
61

use_frameworks!
platform :ios, '8.0'

target 'Core_Example' do
  pod 'FirebaseDev/Core', :path => '../'

  target 'Core_Tests' do
    inherit! :search_paths
    pod 'OCMock'
  end
end

target 'Auth_Example' do
  pod 'FirebaseDev/Auth', :path => '../'

  target 'Auth_Tests' do
    inherit! :search_paths
    pod 'OCMock'
  end
end

target 'Database_Example' do
  pod 'FirebaseDev/Database', :path => '../'

  target 'Database_Tests' do
    inherit! :search_paths
    pod 'OCMock'
  end
  
  target 'Database_IntegrationTests' do
    inherit! :search_paths
    pod 'OCMock'
  end
end

target 'Messaging_Example' do
  pod 'FirebaseDev/Messaging', :path => '../'
  # Lock to the 1.0.9 version of InstanceID since 1.0.10 added a dependency
  # to FirebaseCore
  pod 'FirebaseInstanceID', '1.0.9'

  target 'Messaging_Tests' do
    inherit! :search_paths
    pod 'OCMock'
  end
end

target 'Storage_Example' do
  pod 'FirebaseDev/Storage', :path => '../'

  target 'Storage_Tests' do
    inherit! :search_paths
    pod 'OCMock'
  end
  
  target 'Storage_IntegrationTests' do
    inherit! :search_paths
    pod 'OCMock'
  end
end