Skip to content
This repository has been archived by the owner on Nov 5, 2022. It is now read-only.

Commit

Permalink
Removed crutch logic for pre published dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
randallli committed Dec 7, 2016
1 parent 2e83b0f commit 98b5cd7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
3 changes: 0 additions & 3 deletions examples/apps/RobotoFontLoaderExample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ target "RobotoFontLoaderExample" do
pod 'MDFRobotoFontLoader', :path => '../../../'
pod 'CatalogByConvention'

# Note: this works around the unreleased state of the FontDiskLoader.
pod 'MDFFontDiskLoader', :path => '../../../../material-font-disk-loader-ios/'

target 'RobotoFontLoaderExampleTests' do
end
end
7 changes: 2 additions & 5 deletions examples/apps/RobotoFontLoaderExample/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,9 @@ PODS:

DEPENDENCIES:
- CatalogByConvention
- MDFFontDiskLoader (from `../../../../material-font-disk-loader-ios/`)
- MDFRobotoFontLoader (from `../../../`)

EXTERNAL SOURCES:
MDFFontDiskLoader:
:path: "../../../../material-font-disk-loader-ios/"
MDFRobotoFontLoader:
:path: "../../../"

Expand All @@ -20,6 +17,6 @@ SPEC CHECKSUMS:
MDFFontDiskLoader: 95d6c92c644f24897dee5a860973b0da4d9a1ce4
MDFRobotoFontLoader: 4c4f388aed303e99e57e4c99d04230ed7b870f9d

PODFILE CHECKSUM: 74430d337f691113bb689e9060fdf65deade59fa
PODFILE CHECKSUM: 052a88478a1b381320d170733a3507d3153c787e

COCOAPODS: 1.0.1
COCOAPODS: 1.1.1
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
showEnvVarsInLog = 0;
};
3E7B3F2DA631F2D65D429269 /* [CP] Embed Pods Frameworks */ = {
Expand Down Expand Up @@ -341,7 +341,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
Expand Down

0 comments on commit 98b5cd7

Please sign in to comment.