-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Xcode 12.4 is not available anymore --------- Co-authored-by: Gabriel Lanata <[email protected]> Co-authored-by: Marcos Griselli <[email protected]> Co-authored-by: Marcos Griselli <[email protected]>
- Loading branch information
1 parent
d560b57
commit 4e958c5
Showing
11 changed files
with
69 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
Pod::Spec.new do |spec| | ||
spec.name = "HammerTests" | ||
spec.version = "0.14.3" | ||
spec.version = "0.14.4" | ||
spec.summary = "iOS touch and keyboard syntheis library for unit tests." | ||
spec.description = "Hammer is a touch and keyboard synthesis library for emulating user interaction events. It enables new ways of triggering UI actions in unit tests, replicating a real world environment as much as possible." | ||
spec.homepage = "https://github.com/lyft/Hammer" | ||
spec.screenshots = "https://user-images.githubusercontent.com/585835/116217617-ab410080-a6fe-11eb-9de1-3d42f7dd6037.gif" | ||
spec.license = { :type => "Apache License, Version 2.0", :file => "./LICENSE" } | ||
spec.author = { "Gabriel Lanata" => "[email protected]" } | ||
spec.platform = :ios, "11.0" | ||
spec.platform = :ios, "12.0" | ||
spec.swift_version = "5.3" | ||
spec.frameworks = 'XCTest' | ||
spec.source = { :git => "https://github.com/lyft/Hammer.git", :tag => "#{spec.version}" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import UIKit | ||
|
||
@available(iOS 13.0, *) | ||
final class SceneDelegate: UIResponder, UISceneDelegate { | ||
var window: UIWindow? | ||
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, | ||
options connectionOptions: UIScene.ConnectionOptions) {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters