From 2fbe2c55bdcf727fde7c93833a79865a7ebd4e7b Mon Sep 17 00:00:00 2001 From: Gabriel Lanata Date: Tue, 3 Aug 2021 10:27:59 -0700 Subject: [PATCH] Add XCTest to CocoaPods --- HammerTests.podspec | 3 ++- README.md | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/HammerTests.podspec b/HammerTests.podspec index 46a94ed..e1e5204 100644 --- a/HammerTests.podspec +++ b/HammerTests.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "HammerTests" - spec.version = "0.13.0" + spec.version = "0.13.1" 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" @@ -9,6 +9,7 @@ Pod::Spec.new do |spec| spec.author = { "Gabriel Lanata" => "gabriel@lanata.me" } spec.platform = :ios, "11.0" spec.swift_version = "5.3" + spec.frameworks = 'XCTest' spec.source = { :git => "https://github.com/lyft/Hammer.git", :tag => "#{spec.version}" } spec.source_files = "Sources/**/*.swift" spec.requires_arc = true diff --git a/README.md b/README.md index 68d3420..59e674f 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.13.0' +pod 'HammerTests', '~> 0.13.1' ``` ## Setup