aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Podfile
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2017-05-15 12:27:07 -0700
committerGravatar Paul Beusterien <paulbeusterien@google.com>2017-05-15 12:27:07 -0700
commit98ba64449a632518bd2b86fe8d927f4a960d3ddc (patch)
tree131d9c4272fa6179fcda6c5a33fcb3b1bd57ad2e /Example/Podfile
parent32461366c9e204a527ca05e6e9b9404a2454ac51 (diff)
Initial
Diffstat (limited to 'Example/Podfile')
-rw-r--r--Example/Podfile61
1 files changed, 61 insertions, 0 deletions
diff --git a/Example/Podfile b/Example/Podfile
new file mode 100644
index 0000000..50bc37e
--- /dev/null
+++ b/Example/Podfile
@@ -0,0 +1,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