🧪 Shell
Shell 是一个用 Swift 编写的 µ-library,用于运行 shell 任务。
🛠
安装Swift 包管理器
在您的 Package.swift
文件中添加依赖项
let package = Package(
name: "myproject",
dependencies: [
.package(url: "https://github.com/tuist/shell.git", .upToNextMajor(from: "2.2.0")),
],
targets: [
.target(
name: "myproject",
dependencies: ["Shell"]),
]
)
CocoaPods
在您的项目的 Podfile 中添加以下行
pod "Shell", "2.2.0"
pod "ShellTesting", "2.2.0"
pod "RxShell", "2.2.0"
Carthage
在您的项目的 Cartfile 中添加以下行
github "tuist/shell" "2.2.0"
Marathon
如果您想在Marathon脚本中使用Shell,您可以将其添加到您的Marathonfile
中(有关如何操作的信息,请参阅Marathon仓库),或者使用内联依赖语法将Marathon指向Shell。
import Shell // https://github.com/tuist/shell.git
🚀
使用方法要在系统中运行命令,您需要创建一个Shell
实例。
let shell = Shell()
Shell提供了同步、异步运行命令和捕获输出的方法。
// Synchronous running
let result = shell.sync(["xcodebuild", "-project", "Shell", "-scheme", "Shell"])
// Asynchronous running
shell.async(["xcodebuild", "-project", "Shell", "-scheme", "Shell"]) { result in
// Process the result
})
// Capturing output
let result = shell.capture(["xcode-select", "-p"])
✅
测试我们理解在Swift中测试可能的不便,因此我们设计了Shell的API,避免了许多语法糖和静态接口,以简化测试。该库附带了一个库,ShellTesting
,您可以在测试目标中导入它来模拟Shell
接口并存根运行命令的结果。
import ShellTesting
let mock = Shell.mock()
let xcodebuild = XcodeBuild(shell: mock)
shell.succeed(["xcodebuild", "-project", "Shell.xcodeproj", "-scheme", "Shell"])
XCTAssertNoThrow(try xcodebuild.build(project: "Shell.xcodeproj", scheme: "Shell"))
💃
RxShellShell附带了一个名为RxShell
的包,它使用RxSwift向Shell
接口添加了一个响应式扩展。
subject.run(["xcodebuild", "-project", "Shell", "-scheme", "Shell"]).subscribe {
print("Compilation completed")
}
👩💻
开发设置- Git克隆:
[email protected]:tuist/shell.git
- 使用
swift package generate-xcodeproj
生成Xcode项目。 - 打开
Shell.xcodeproj
。 - 享受乐趣
🤖
开源
Tuist是