File tree Expand file tree Collapse file tree 6 files changed +22
-25
lines changed Expand file tree Collapse file tree 6 files changed +22
-25
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 263
263
files = (
264
264
);
265
265
inputPaths = (
266
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
267
+ "${PODS_ROOT}/Manifest.lock",
266
268
);
267
269
name = "[CP] Check Pods Manifest.lock";
268
270
outputPaths = (
271
+ "$(DERIVED_FILE_DIR)/Pods-Example-checkManifestLockResult.txt",
269
272
);
270
273
runOnlyForDeploymentPostprocessing = 0;
271
274
shellPath = /bin/sh;
272
- 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";
275
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/ 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# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\" \n";
273
276
showEnvVarsInLog = 0;
274
277
};
275
278
B5C50ADD1C917F4A0059032B /* Swift Lint */ = {
284
287
);
285
288
runOnlyForDeploymentPostprocessing = 0;
286
289
shellPath = /bin/sh;
287
- shellScript = "sh ${SRCROOT}/scripts /swiftlint.sh ";
290
+ shellScript = "${PODS_ROOT}/SwiftLint /swiftlint";
288
291
};
289
292
CAB3B20531AAE2438C48D751 /* [CP] Embed Pods Frameworks */ = {
290
293
isa = PBXShellScriptBuildPhase;
291
294
buildActionMask = 2147483647;
292
295
files = (
293
296
);
294
297
inputPaths = (
298
+ "${SRCROOT}/Pods/Target Support Files/Pods-Example/Pods-Example-frameworks.sh",
299
+ "${BUILT_PRODUCTS_DIR}/ICInputAccessory/ICInputAccessory.framework",
295
300
);
296
301
name = "[CP] Embed Pods Frameworks";
297
302
outputPaths = (
303
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ICInputAccessory.framework",
298
304
);
299
305
runOnlyForDeploymentPostprocessing = 0;
300
306
shellPath = /bin/sh;
Original file line number Diff line number Diff line change 1
- install : brew-install bundle-install pod-install
1
+ bootstrap :
2
+ gem install bundler
3
+ bundle install
4
+ bundle exec pod install
5
+
6
+ install : bundle-install pod-install
2
7
3
8
brew-install :
4
9
brew tap homebrew/bundle
@@ -8,14 +13,7 @@ bundle-install:
8
13
bundle install --without development --deployment --jobs=3 --retry=3
9
14
10
15
pod-install :
11
- bundle exec pod install --no-repo-update
12
-
13
- bootstrap :
14
- brew tap homebrew/bundle
15
- brew bundle
16
- gem install bundler
17
- bundle install
18
- bundle exec pod install --no-repo-update
16
+ bundle exec pod install
19
17
20
18
carthage :
21
19
set -o pipefail && carthage build --no-skip-current --verbose | bundle exec xcpretty
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ project "Example"
8
8
target "Example" do
9
9
pod "ICInputAccessory/KeyboardDismissTextField" , path : "./"
10
10
pod "ICInputAccessory/TokenField" , path : "./"
11
+ pod "SwiftLint" , "0.19.0"
11
12
end
12
13
13
14
post_install do |installer |
Original file line number Diff line number Diff line change 1
1
PODS:
2
2
- ICInputAccessory/KeyboardDismissTextField (1.4.0)
3
3
- ICInputAccessory/TokenField (1.4.0)
4
+ - SwiftLint (0.19.0)
4
5
5
6
DEPENDENCIES:
6
7
- ICInputAccessory/KeyboardDismissTextField (from `./`)
7
8
- ICInputAccessory/TokenField (from `./`)
9
+ - SwiftLint (= 0.19.0)
8
10
9
11
EXTERNAL SOURCES:
10
12
ICInputAccessory:
11
- :path: "./"
13
+ :path: ./
12
14
13
15
SPEC CHECKSUMS:
14
16
ICInputAccessory: dace41bea1ed8b0368bf8ffd439a215efa8effd3
17
+ SwiftLint: 3537a05b34060e78e7510f04fb7537d738247803
15
18
16
- PODFILE CHECKSUM: 6e8fb9f23fc92d92278fbf08ca8ef072ef28a486
19
+ PODFILE CHECKSUM: a2f3f54a890602e56a62a49ef8e9b80f436b0899
17
20
18
- COCOAPODS: 1.1 .1
21
+ COCOAPODS: 1.3 .1
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments