04

Carthage is an open source Cocoa dependency management solution released by Justin Spahr-Summers that makes it dead simple to checkout and build dependencies from Github or any Git repository, and has a number of advantages over other solutions.

Carthage takes a new approach and does not require any specification files to be included with your dependencies, you simply need to create a single cartfile listing your dependencies along with your version requirements. Carthage will only work with iOS 8 as it uses the new dynamically linked framework capability.

Read More »

18

Deploy screenshots, app metadata and app updates to the App Store using just one command.

Updating your iOS app should not be painful and time consuming. Automate the whole process to start with Continuous Deployment.

Deliver can upload ipa files, app screenshots and more to the iTunes Connect backend, which means, you can deploy new iPhone app updates just by using one command.

Read More »

14

Here’s another nice open source project called Deliver from Krause providing a ruby based tool that simplifies updating your iOS apps by automatically uploading ipa files, screenshots and more to iTunes connect.

Read More »

31

If you browse the log of any random git repository, you will probably find its commit messages are more or less a mess.

[…]

The seven rules of a great git commit message:

  1. Separate subject from body with a blank line
  2. Limit the subject line to 50 characters
  3. Capitalize the subject line
  4. Do not end the subject line with a period
  5. Use the imperative mood in the subject line
  6. Wrap the body at 72 characters
  7. Use the body to explain what and why vs. how

Read More »

28

With thanks to the genius who suggested this plugin, GitDiff displays deltas against a git repo in the Xcode source editor once you’ve saved the file. To use, copy this repo to your machine, build it and restart Xcode. Differences should then be highlighted in orange for lines that have been modified and green for new code. A red line indicates code has been removed. Hover over deleted/modified line number to see original source.

Read More »

23
23
11
02

Here’s an Xcode plugin submitted by Arnaud Coomans called ACCodeSnippetRepositoryPlugin that allows you to seamlessly integrate the Xcode code snippets library with a Git repository.The snippets can be synchronized automatically, the plugin allows you to easily fork a remote repository, and automatically adds the snippets directly into Xcode.


Read More »

28