From b453e0b7913d566b52f7f090df099f117d7075dd Mon Sep 17 00:00:00 2001 From: Gabriel Lanata Date: Fri, 16 Jul 2021 15:42:13 -0700 Subject: [PATCH] Fix podfile filename (#12) Podfile filename must match pod name --- Hammer.podspec => HammerTests.podspec | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename Hammer.podspec => HammerTests.podspec (96%) diff --git a/Hammer.podspec b/HammerTests.podspec similarity index 96% rename from Hammer.podspec rename to HammerTests.podspec index 78b685e..837df96 100644 --- a/Hammer.podspec +++ b/HammerTests.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "HammerTests" - spec.version = "0.10.1" + spec.version = "0.10.2" 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" diff --git a/README.md b/README.md index a7bd990..b647cdf 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Hammer requires Swift 5.3 and iOS 11.0 or later. #### With [CocoaPods](https://cocoapods.org/) ```ruby -pod 'HammerTests', '~> 0.10.1' +pod 'HammerTests', '~> 0.10.2' ``` ## Setup