https://github.com/yasumoto/gyutou
Swift Chef Client Library
https://github.com/yasumoto/gyutou
chef devops swift swift-4 swift-package-manager
Last synced: about 2 months ago
JSON representation
Swift Chef Client Library
- Host: GitHub
- URL: https://github.com/yasumoto/gyutou
- Owner: Yasumoto
- Created: 2017-05-16T23:55:11.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-04-24T22:29:38.000Z (about 7 years ago)
- Last Synced: 2025-03-07T01:11:39.869Z (about 1 year ago)
- Topics: chef, devops, swift, swift-4, swift-package-manager
- Language: Swift
- Size: 21.5 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# Gyutou
A [gyutou is a versatile chef's knife](http://korin.com/Knives/Style-Gyutou_2).
The chef-provided [command-line tool](https://docs.chef.io/knife.html) is named `knife`.
## Including in your project
### Swift Package Manager
This should work if you add it to your `Package.swift`.
### Carthage
Add this to your `Cartfile`:
```
github "Yasumoto/Gyutou" "master"
```
Then since this is a SwiftPM package, you need to create the `.xcodeproj` and add the framework:
```
cd ./Carthage/Checkouts/Gyutou/
swift package generate-xcodeproj
cd ../../..
carthage build
```
Then in your project, add your library [per the Carthage docs](https://github.com/Carthage/Carthage#getting-started).