Using swift-sh you can automate project-tasks using scripts, for example we
can make a script that keeps a project’s version key in sync with the current
git tag that represents the project’s version:
#!/usr/bin/swift sh
import Foundation
import XcodeProj // @tuist ~> 8.8.0
import PathKit
guard CommandLine.arguments.count == 3 else {
let arg0 = Path(CommandLine.arguments[0]).lastComponent
fputs("usage: \(arg0) <project> <new-version>\n", stderr)
exit(1)
}
let projectPath = Path(CommandLine.arguments[1])
let newVersion = CommandLine.arguments[2]
let xcodeproj = try XcodeProj(path: projectPath)
let key = "CURRENT_PROJECT_VERSION"
for conf in xcodeproj.pbxproj.buildConfigurations where conf.buildSettings[key] != nil {
conf.buildSettings[key] = newVersion
}
try xcodeproj.write(path: projectPath)
You could then store this in your repository, for example at
scripts/set-project-version and then run it:
Future adaption could easily include determining the version and bumping it
automatically. If so, we recommend using a library that provides a Version
object.
Documentation 📝
Want to start using XcodeProj? Start by digging into our documentation which will help you get familiar with the API and get to know more about the Xcode projects structure.
XcodeProj
XcodeProj is a library written in Swift for parsing and working with Xcode projects. It’s heavily inspired by CocoaPods XcodeProj and xcode.
Projects Using XcodeProj
If you are also leveraging XcodeProj in your project, feel free to open a PR to include it in the list above.
Installation
Swift Package Manager
Add the dependency in your
Package.swift
file:Carthage
Only macOS
CocoaPods
Scripting
Using
swift-sh
you can automate project-tasks using scripts, for example we can make a script that keeps a project’s version key in sync with the current git tag that represents the project’s version:You could then store this in your repository, for example at
scripts/set-project-version
and then run it:Future adaption could easily include determining the version and bumping it automatically. If so, we recommend using a library that provides a
Version
object.Documentation 📝
Want to start using XcodeProj? Start by digging into our documentation which will help you get familiar with the API and get to know more about the Xcode projects structure.
References 📚
Contributing
git@github.com:tuist/xcodeproj.git
.Package.swift
with Xcode.License
XcodeProj is released under the MIT license. See LICENSE for details.
Contributors ✨
Thanks goes to these wonderful people (emoji key):
Joseph Colicchio
🤔
deatondg
🤔
Dan Fleming
💻
Sascha Schwabbauer
🤔
Marcin Iwanicki
🚧
Adam Khazi
🚧
Elliott Williams
💻
Muukii
🖋
Yuya Oka
💻
Keith Smiley
🖋
Ian Leitch
💻
Daniil Subbotin
💻
Florentin Bekier
💻
Vadim Smal
🐛
freddi(Yuki Aki)
💻
Kristopher Jackson
💻
Jake Prickett
💻
Jake Adams
💻
matsuji
💻
Bogdan Belogurov
💻
Chuck Grindel
💻
Michael McGuire
💻
C-凡
💻
Maxwell Elliott
💻
Brentley Jones
💻
Teameh
💻
Johannes Ebeling
💻
baegteun
📖
Alex Kovács
📖
This project follows the all-contributors specification. Contributions of any kind welcome!