Skip to content

Commit

Permalink
feat: podspecPath can be an array to push multiple podspecs with the …
Browse files Browse the repository at this point in the history
…cocoapod plugin
  • Loading branch information
hborawski committed May 18, 2021
1 parent bd6b041 commit 87893cc
Show file tree
Hide file tree
Showing 3 changed files with 411 additions and 55 deletions.
23 changes: 23 additions & 0 deletions plugins/cocoapods/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,29 @@ yarn add -D @auto-it/cocoapods
}
```

Or with multiple podspecs:

```json
{
"plugins": [
[
"cocoapods",
{
// Required, the relative path to your podspec file
"podspecPath": ["./Test.podspec", "./Test2.podspec"],
// Optional, the specs repo to push to
"specsRepo": "https://github.com/intuit/TestSpecs.git",
// Optional, flags to pass to the `pod repo push` command
"flags": ["--sources=https://github.com/SpecRepo.git"],
// Optional, specify a different executable for `pod`
"podCommand": "bundle exec pod"
}
]
// other plugins
]
}
```

## Requirements

### General
Expand Down
Loading

0 comments on commit 87893cc

Please sign in to comment.