Skip to content

Commit

Permalink
Support development via CocoaPods.
Browse files Browse the repository at this point in the history
  • Loading branch information
andersio committed Oct 18, 2017
1 parent 7f4c6e8 commit d7ab53b
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
install! 'cocoapods',
:integrate_targets => false
use_frameworks!

def shared_pods
pod "ReactiveSwift", "~> 2.0"
end

target "ReactiveFeedback" do
platform :ios, "8.0"
shared_pods
end

target "ReactiveFeedbackTests" do
platform :ios, "8.0"
shared_pods
pod "Nimble", "~> 7.0"
end

target "Example" do
platform :ios, "10.0"
shared_pods
pod "Kingfisher", "~> 4.0"
end
21 changes: 21 additions & 0 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
PODS:
- Kingfisher (4.1.0)
- Nimble (7.0.2)
- ReactiveSwift (2.0.1):
- Result (~> 3.2)
- Result (3.2.4)

DEPENDENCIES:
- Kingfisher (~> 4.0)
- Nimble (~> 7.0)
- ReactiveSwift (~> 2.0)

SPEC CHECKSUMS:
Kingfisher: f14df8cbe576bf55f211fa589e9869bceb4ea87d
Nimble: bfe1f814edabba69ff145cb1283e04ed636a67f2
ReactiveSwift: 60a29ff35988a964fd2bb759755cb6594de523fc
Result: d2d07204ce72856f1fd9130bbe42c35a7b0fea10

PODFILE CHECKSUM: 8382ae2e5d0edf1400362eaa2ce5cc2d16d032e9

COCOAPODS: 1.3.1
24 changes: 24 additions & 0 deletions ReactiveFeedback.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,10 @@
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(BUILT_PRODUCTS_DIR)/Result",
"$(BUILT_PRODUCTS_DIR)/ReactiveSwift",
);
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
Expand Down Expand Up @@ -558,6 +562,10 @@
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(BUILT_PRODUCTS_DIR)/Result",
"$(BUILT_PRODUCTS_DIR)/ReactiveSwift",
);
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
Expand All @@ -580,6 +588,10 @@
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "iPhone Developer";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(BUILT_PRODUCTS_DIR)/Kingfisher",
);
INFOPLIST_FILE = "$(SRCROOT)/Example/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.babylonhealth.Example;
Expand All @@ -594,6 +606,10 @@
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "iPhone Developer";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(BUILT_PRODUCTS_DIR)/Kingfisher",
);
INFOPLIST_FILE = "$(SRCROOT)/Example/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.babylonhealth.Example;
Expand All @@ -607,6 +623,10 @@
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
COMBINE_HIDPI_IMAGES = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(BUILT_PRODUCTS_DIR)/Nimble",
);
INFOPLIST_FILE = ReactiveFeedbackTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks @loader_path/Frameworks @executable_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.13;
Expand All @@ -623,6 +643,10 @@
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
COMBINE_HIDPI_IMAGES = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(BUILT_PRODUCTS_DIR)/Nimble",
);
INFOPLIST_FILE = ReactiveFeedbackTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks @loader_path/Frameworks @executable_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.13;
Expand Down

0 comments on commit d7ab53b

Please sign in to comment.