Skip to content

Commit

Permalink
Merge pull request #236 from sidepelican/bump2
Browse files Browse the repository at this point in the history
Update version number to 2.0.0
  • Loading branch information
sidepelican authored May 18, 2023
2 parents 5c56a72 + 6f8e5b6 commit dc4caa2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 24 deletions.
24 changes: 1 addition & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,36 +128,14 @@ OPTIONS:
--use-mock-observable If set, a property wrapper will be used to mock RxSwift Observable variables (default is set to false).
--use-template-func If set, a common template function will be called from all functions in mock classes (default is set to false).
-h, --help Show help information.
```


## Add MockoloFramework to your project

Option 1: SPM
```swift

dependencies: [
.package(url: "https://github.com/uber/mockolo.git", from: "1.8.2"),
],
targets: [
.target(name: "MyTarget", dependencies: ["MockoloFramework"]),
]

```
Option 2: Cocoapods
```
target 'MyTarget' do
platform :osx, '10.14'
pod 'MockoloFramework', '~>1.1.2'
end
```


## Distribution

The `install-script.sh` will build and package up the `mockolo` binary and other necessary resources in the same bundle.

```
```sh
$ ./install-script.sh -h // see input options
$ ./install-script.sh -s [source dir] -t mockolo -d [destination dir] -o [output filename].tar.gz
```
Expand Down
2 changes: 1 addition & 1 deletion Sources/MockoloFramework/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ public struct Version {
public let value: String

/// The current Mockolo version.
public static let current = Version(value: "1.8.2")
public static let current = Version(value: "2.0.0")
}

0 comments on commit dc4caa2

Please sign in to comment.