From e971610e8f11b415ddbf54ec3c4fd9fda0fc607e Mon Sep 17 00:00:00 2001 From: Guy Daher Date: Mon, 31 Jul 2017 15:03:32 +0200 Subject: [PATCH] chore(CI): Add Podfile to make travis happy for now --- Podfile | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 Podfile diff --git a/Podfile b/Podfile new file mode 100644 index 00000000..a9af6a9d --- /dev/null +++ b/Podfile @@ -0,0 +1,35 @@ +# NOTE: This Podfile is used to draw dependencies when building the project independently (e.g. for unit tests). + +use_frameworks! + +def common_deps + pod 'AlgoliaSearch-Client-Swift', '~> 4.8' +end + +target "InstantSearchCore-iOS" do + common_deps +end + +target "InstantSearchCore-iOS-Tests" do + common_deps +end + +target "InstantSearchCore-macOS" do + common_deps +end + +target "InstantSearchCore-macOS-Tests" do + common_deps +end + +target "InstantSearchCore-tvOS" do + common_deps +end + +target "InstantSearchCore-tvOS-Tests" do + common_deps +end + +target "InstantSearchCore-watchOS" do + common_deps +end