XcodeIssueGenerator alternatives and similar libraries
Based on the "Tools" category.
Alternatively, view XcodeIssueGenerator alternatives based on common mentions on social networks and blogs.
-
Awesome-Design-Tools
The best design tools and plugins for everything 👉 -
SwiftGen
The Swift code generator for your assets, storyboards, Localizable.strings, … — Get rid of all String-based APIs! -
R.swift
Strong typed, autocompleted resources like images, fonts and segues in Swift projects -
Insanity
Meta-programming for Swift, stop writing boilerplate code. -
Lona
A tool for defining design systems and using them to generate cross-platform UI code, Sketch files, and other artifacts. -
XcodeGen
A Swift command line tool for generating your Xcode project -
Tweaks
An easy way to fine-tune, and adjust parameters for iOS apps in development. -
appledoc
Objective-c code Apple style documentation set generator. -
Xcodes.app
The easiest way to install and switch between multiple versions of Xcode - with a mouse click. -
FBSimulatorControl
idb is a flexible command line interface for automating iOS simulators and devices -
FengNiao
A command line tool for cleaning unused resources in Xcode. -
LifetimeTracker
Find retain cycles / memory leaks sooner. -
Peek
All new design. Inspect your iOS application at runtime. -
SourceKitten
An adorable little framework and command line tool for interacting with SourceKit. -
GDPerformanceView-Swift
Shows FPS, CPU and memory usage, device model, app and iOS versions above the status bar and report FPS, CPU and memory usage via delegate. -
LicensePlist
A license list generator of all your dependencies for iOS applications -
ProvisionQL
Quick Look plugin for apps and provisioning profile files -
Provisioning
A Quick Look plug-in for .mobileprovision files -
AppDevKit
AppDevKit is an iOS development library that provides developers with useful features to fulfill their everyday iOS app development needs. -
Laurine
Laurine - Localization code generator written in Swift. Sweet! -
DBDebugToolkit
Set of easy to use debugging tools for iOS developers & QA engineers. -
ThisCouldBeUsButYouPlaying
:black_joker: Generate Swift Playgrounds for any library. -
Attabench
Microbenchmarking app for Swift with nice log-log plots -
iSimulator
iSimulator is a GUI utility to control the Simulator, and manage the app installed on the simulator. -
Blade
Better asset workflow for iOS developers. Generate Xcode image catalogs for iOS / OSX app icons, universal images, and more. -
ViewMonitor
ViewMonitor can measure view positions with accuracy. -
Realm Browser
DEPRECATED - Realm Browser for Mac OS X has been replaced by realm-studio which is cross platform. -
Cookiecutter
A template for new Swift iOS / macOS / tvOS / watchOS Framework project ready with travis-ci, cocoapods, Carthage, SwiftPM and a Readme file -
Rugby
🏈 Cache CocoaPods for faster rebuild and indexing Xcode project -
SuperDelegate
SuperDelegate provides a clean application delegate interface and protects you from bugs in the application lifecycle -
WatchdogInspector
Shows your current framerate (fps) in the status bar of your iOS app -
abandoned-strings
Command line program that detects unused resource strings in an iOS or OS X application. -
Swift Package Index
The Swift Package Index is the place to find Swift packages! -
fastlane-plugin-appicon
Generate required icon sizes and iconset from a master application icon. -
Shark
Swift CLI for strong-typing images, colors, storyboards, fonts and localizations
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of XcodeIssueGenerator or a related project?
README
XcodeIssueGenerator
An executable that can be called from a Run Script Build Phase that makes comments such as // TODO:
or // SERIOUS:
appear in Xcode's Issue Navigator giving them project-wide visibility.
- Works in Swift files.
- An upside of using this program as compared to
#warning
pragmas available to Objective-C is we can keep "treat warnings as errors" on in the host project build settings since this executable runs post-build. - Comments can be configured as warnings or errors. Error-producing comments stop the build from succeeding.
- Warning or error behavior for comments can be configured differently per build configuration—you can have a
// TODO:
be a warning in DEBUG and be an error in RELEASE for instance.
Installation
Install with Homebrew
brew tap doubleencore/tap
brew install xcodeissuegenerator
Xcode 8 and Swift 3 are required to build XcodeIssueGenerator.
Install Manually
Download the latest release or build the project yourself. Copy the XcodeIssueGenerator executable to your /usr/local/bin
directory and make it executable: chmod +x /usr/local/bin/XcodeIssueGenerator
. Call the XcodeIssueGenerator executable from a Run Script build phase.
Adding a Run Script Build Phase
Select the target on which to run XcodeIssueGenerator, select Build Phases, and select the "+" icon to add a new Run Script phase. Then put in a call to XcodeIssueGenerator as in the example below.
Example Run Script
if which XcodeIssueGenerator >/dev/null; then
# Mark WARNINGs, SERIOUSs, and TODOs as warnings in DEBUG builds excluding the Vendor and Third Party directories.
XcodeIssueGenerator -b DEBUG -w "WARNING, SERIOUS, TODO" -x "Vendor/, Third Party/"
# Mark WARNINGs and SERIOUSs as warnings and TODOs as errors in RELEASE builds excluding the Vendor and Third Party directories.
XcodeIssueGenerator -b RELEASE -w "WARNING, SERIOUS" -e TODO -x "Vendor/, Third Party/"
else
echo "warning: XcodeIssueGenerator is not installed."
fi
With the Run Script above, we'll show all comments in Issue Navigator as warnings in DEBUG builds. In RELEASE builds, we'll mark TODOs as errors as a way to block unfinished work from becoming part of a release build.
Options
- -w warnings tags list (required if no -e)
- -e error tags list (required if no -w)
- -b build configuration (required)
- -x exclude directories (optional)
Tags can be any string. Multiple tags should be separated by commas. Build configurations should match those in the host Xcode project.
License
XcodeIssueGenerator is released under the MIT license. See LICENSE for details.
*Note that all licence references and agreements mentioned in the XcodeIssueGenerator README section above
are relevant to that project's source code only.