Skip to content

Commit

Permalink
Add XCTest to CocoaPods
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriellanata authored Aug 3, 2021
1 parent 1042e3f commit 2fbe2c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion HammerTests.podspec
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2fbe2c5

Please sign in to comment.