All Projects → yonaskolb → Xcodegen

yonaskolb / Xcodegen

Licence: mit
A Swift command line tool for generating your Xcode project

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Xcodegen

Swaggen
OpenAPI/Swagger 3.0 Parser and Swift code generator
Stars: ✭ 385 (-92.35%)
Mutual labels:  cli, yaml, generator
Swiftcolorgen
A tool that generate code for Swift projects, designed to improve the maintainability of UIColors
Stars: ✭ 152 (-96.98%)
Mutual labels:  cli, xcode, generator
Genesis
Templating, scaffolding and generation tool
Stars: ✭ 122 (-97.58%)
Mutual labels:  cli, yaml, generator
Travis Watch
Stream live travis test results of the current commit to your terminal!
Stars: ✭ 294 (-94.16%)
Mutual labels:  cli, ci
biolink-model
Schema and generated objects for biolink data model and upper ontology
Stars: ✭ 83 (-98.35%)
Mutual labels:  yaml, specification
hitchstory
Type-safe, StrictYAML based BDD framework for python.
Stars: ✭ 24 (-99.52%)
Mutual labels:  yaml, specification
Pollinate
Template your base files and generate new projects from Git(Hub).
Stars: ✭ 213 (-95.77%)
Mutual labels:  cli, generator
Horusec
Horusec is an open source tool that improves identification of vulnerabilities in your project with just one command.
Stars: ✭ 311 (-93.82%)
Mutual labels:  cli, ci
Reviewdog
🐶 Automated code review tool integrated with any code analysis tools regardless of programming language
Stars: ✭ 4,541 (-9.76%)
Mutual labels:  cli, ci
Graphback
Graphback - Out of the box GraphQL server and client
Stars: ✭ 323 (-93.58%)
Mutual labels:  cli, generator
Hygen
The simple, fast, and scalable code generator that lives in your project.
Stars: ✭ 4,107 (-18.38%)
Mutual labels:  cli, generator
Grow
A declarative website generator designed for high-quality websites, with a focus on easy maintenance and localization.
Stars: ✭ 360 (-92.85%)
Mutual labels:  cli, yaml
kahoy
Simple Kubernetes raw manifests deployment tool
Stars: ✭ 33 (-99.34%)
Mutual labels:  yaml, ci
Cli
A simple, fast, and fun package for building command line apps in Go
Stars: ✭ 16,995 (+237.74%)
Mutual labels:  cli, yaml
Tmuxp
💻 tmux session manager. built on libtmux
Stars: ✭ 3,269 (-35.04%)
Mutual labels:  cli, yaml
Extension Create
Create modern cross-browser extensions with no build configuration.
Stars: ✭ 167 (-96.68%)
Mutual labels:  cli, generator
Jinja2 Cli
CLI for Jinja2
Stars: ✭ 302 (-94%)
Mutual labels:  cli, yaml
Remarshal
Convert between CBOR, JSON, MessagePack, TOML, and YAML
Stars: ✭ 421 (-91.63%)
Mutual labels:  cli, yaml
Ahoy
Create self-documenting cli programs from YAML files. Easily wrap bash, grunt, npm, docker, (anything) to standardize your processes and make the lives of the people working on your project better.
Stars: ✭ 201 (-96.01%)
Mutual labels:  cli, yaml
Cypress Terminal Report
Better terminal and file output for cypress test logs.
Stars: ✭ 200 (-96.03%)
Mutual labels:  cli, ci

XcodeGen

Swift Package Manager Platforms Swift Versions

XcodeGen

XcodeGen is a command line tool written in Swift that generates your Xcode project using your folder structure and a project spec.

The project spec is a YAML or JSON file that defines your targets, configurations, schemes, custom build settings and many other options. All your source directories are automatically parsed and referenced appropriately while preserving your folder structure. Sensible defaults are used in many places, so you only need to customize what is needed. Very complex projects can also be defined using more advanced features.

  • Generate projects on demand and remove your .xcodeproj from git, which means no more merge conflicts!
  • Groups and files in Xcode are always synced to your directories on disk
  • Easy configuration of projects which is human readable and git friendly
  • Easily copy and paste files and directories without having to edit anything in Xcode
  • Share build settings across multiple targets with build setting groups
  • Automatically generate Schemes for different environments like test and production
  • Easily create new projects with complicated setups on demand without messing around with Xcode
  • Generate from anywhere including on CI
  • Distribute your spec amongst multiple files for easy sharing and overriding
  • Easily create multi-platform frameworks
  • Integrate Carthage frameworks without any work
  • Export Dependency Diagrams to view in Graphviz

Given an example project spec:

name: MyProject
include:
  - base_spec.yml
options:
  bundleIdPrefix: com.myapp
packages:
  Yams:
    url: https://github.com/jpsim/Yams
    from: 2.0.0
targets:
  MyApp:
    type: application
    platform: iOS
    deploymentTarget: "10.0"
    sources: [MyApp]
    settings:
      configs:
        debug:
          CUSTOM_BUILD_SETTING: my_debug_value
        release:
          CUSTOM_BUILD_SETTING: my_release_value
    dependencies:
      - target: MyFramework
      - carthage: Alamofire
      - framework: Vendor/MyFramework.framework
      - sdk: Contacts.framework
      - sdk: libc++.tbd
      - package: Yams
  MyFramework:
    type: framework
    platform: iOS
    sources: [MyFramework]

A project would be created with 2 connected targets, with all the required configurations and build settings. See the Project Spec documentation for all the options you can specify, and Usage for more general documentation.

Installing

Make sure Xcode 11 is installed first.

Mint

mint install yonaskolb/xcodegen

Make

git clone https://github.com/yonaskolb/XcodeGen.git
cd XcodeGen
make install

Homebrew

brew install xcodegen

Swift Package Manager

Use as CLI

git clone https://github.com/yonaskolb/XcodeGen.git
cd XcodeGen
swift run xcodegen

Use as dependency

Add the following to your Package.swift file's dependencies:

.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.25.0"),

And then import wherever needed: import XcodeGenKit

Usage

Simply run:

xcodegen generate

This will look for a project spec in the current directory called project.yml and generate an Xcode project with the name defined in the spec.

Options:

  • --spec: An optional path to a .yml or .json project spec. Defaults to project.yml
  • --project: An optional path to a directory where the project will be generated. By default this is the directory the spec lives in.
  • --quiet: Suppress informational and success messages.
  • --use-cache: Used to prevent unnecessarily generating the project. If this is set, then a cache file will be written to when a project is generated. If xcodegen is later run but the spec and all the files it contains are the same, the project won't be generated.
  • --cache-path: A custom path to use for your cache file. This defaults to ~/.xcodegen/cache/{PROJECT_SPEC_PATH_HASH}

There are other commands as well such as xcodegen dump which lets out output the resolved spec in many different formats, or write it to a file. Use xcodegen help to see more detailed usage information.

Dependency Diagrams

Click to expand!

How to export dependency diagrams:

To stdout:

xcodegen dump --type graphviz

To a file:

xcodegen dump --type graphviz --file Graph.viz

During implementation, graphviz formatting was validated using GraphvizOnline, WebGraphviz, and Graphviz on MacOS.

Editing

git clone https://github.com/yonaskolb/XcodeGen.git
cd XcodeGen
swift package generate-xcodeproj

This uses Swift Package Manager to create an xcodeproj file that you can open, edit and run in Xcode, which makes editing any code easier.

If you want to pass any required arguments when running in Xcode, you can edit the scheme to include launch arguments.

Documentation

  • See Project Spec documentation for all the various properties and options that can be set
  • See Usage for more specific usage and use case documentation
  • See FAQ for a list of some frequently asked questions
  • See Examples for some real world XcodeGen project specs out in the wild

Alternatives

If XcodeGen doesn't meet your needs try these great alternatives:

Attributions

This tool is powered by:

Inspiration for this tool came from:

Contributions

Pull requests and issues are always welcome. Please open any issues and PRs for bugs, features, or documentation.

License

XcodeGen is licensed under the MIT license. See LICENSE for more info.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].