8000 Fix script by cdhoffmann · Pull Request #40 · adobe/aepsdk-userprofile-ios · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix script #40

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AEPUserProfile.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/zsh;
shellScript = "cd ${PROJECT_DIR}\nif which swiftformat >/dev/null; then\n swiftformat .\nelse\necho \"error: SwiftFormat not installed, download from https://github.com/nicklockwood/SwiftFormat\"\nfi\n";
shellScript = "# Type a script or drag a script file from your workspace to insert its path.\ncd ${PROJECT_DIR}\nif which ./Pods/SwiftLint/swiftlint >/dev/null; then\n ./Pods/SwiftLint/swiftlint\nelse\n echo \"error: SwiftLint not installed, please run the pod install command from the project root directory.\"\nfi\n";
};
/* End PBXShellScriptBuildPhase section */

Expand Down
2 changes: 2 additions & 0 deletions AEPUserProfile/Tests/UserProfileTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,8 @@ class UserProfileTests: XCTestCase {
}

public class TestableExtensionRuntime: ExtensionRuntime {
public func getHistoricalEvents(_ requests: [EventHistoryRequest], enforceOrder: Bool, handler: @escaping ([EventHistoryResult]) -> Void) {}

public func getXDMSharedState(extensionName _: String, event _: Event?, barrier _: Bool) -> SharedStateResult? {
nil
}
Expand Down
18 changes: 9 additions & 9 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PODS:
- AEPCore (3.3.1):
- AEPRulesEngine (= 1.0.1)
- AEPServices (= 3.3.1)
- AEPRulesEngine (1.0.1)
- AEPServices (3.3.1)
- AEPCore (3.4.2):
- AEPRulesEngine (>= 1.1.0)
- AEPServices (>= 3.4.2)
- AEPRulesEngine (1.1.0)
- AEPServices (3.4.2)
- SwiftLint (0.44.0)

DEPENDENCIES:
Expand All @@ -20,11 +20,11 @@ SPEC REPOS:
- SwiftLint

SPEC CHECKSUMS:
AEPCore: fc1398728b6b2a4dcc8dc96455f69ec144e087c0
AEPRulesEngine: 5075ed294026a12e37bd26fe260f74604d205354
AEPServices: c49e7b6ef17ec9f874b015f68ac7d2436235282f
AEPCore: b01856bf24972e4720cb0511a358d1e68067252a
AEPRulesEngine: bb2927ed5501ddf9754c66e97f8d2b1cf8e33b19
AEPServices: 3214311f239c8cdc6267d757200b05ec0ab05878
SwiftLint: e96c0a8c770c7ebbc4d36c55baf9096bb65c4584

PODFILE CHECKSUM: 44713863fdab846a5d5610dab713cd058e3ebf2c

COCOAPODS: 1.10.1
COCOAPODS: 1.11.2
0