From 98ba64449a632518bd2b86fe8d927f4a960d3ddc Mon Sep 17 00:00:00 2001 From: Paul Beusterien Date: Mon, 15 May 2017 12:27:07 -0700 Subject: Initial --- Example/Podfile | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 Example/Podfile (limited to 'Example/Podfile') 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 -- cgit v1.2.3