Skip to content

🚘 Simple tool for updating Carthage script

License

Notifications You must be signed in to change notification settings

phimage/Carting

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Carting

Make Swift Package Manager Swift Package Manager

Do you use Carthage? Are you feel tired of adding special script and the paths to frameworks (point 4, 5 and 6 in Getting Started guide) manually? Me too. Carting does it for you. It scans Carthage folder and linked frameworks, gets framework names and updates the script.

Carting usage

Using

Run carting update in project folder. That's all.

By default Carting searches a script named Carthage, but you can set a name of your script via command line arguments:

$ carting update -s MyBestScript

If there is no script with the name, Carting will add a new one.

🚨Note: be sure to have no uncommitted changes in project file to prevent project parsing errors 😱. Project parsing error

Run carting help to see available commands:

Usage: carting [command] [options]
  update:
      Adds a new script with input/output file paths or updates the script named `Carthage`.
  -s, --script:
      Updates input/output file paths for the script with passed name.
  -p, --path:
      The project directory path.
  list:
      Prints Carthage frameworks list with linking description.
  help:
      Prints this message.

Installing

Homebrew (recommended):

$ brew install artemnovichkov/projects/carting

Make:

$ git clone https://github.com/artemnovichkov/carting.git
$ cd Carting
$ make

Swift Package Manager:

let package = Package(
    dependencies: [
        .Package(url: "https://github.com/artemnovichkov/carting", majorVersion: 1)
    ]
)

Marathon

  • Install Marathon.
  • Add Carting to Marathon using $ marathon add git@github.com:artemnovichkov/carting.git. Alternatively, add git@github.com:artemnovichkov/carting.git to your Marathonfile.
  • Write your script, then run it using $ marathon run <path-to-your-script>.

Todo

  • Add option for adding new script
  • Add support of multiple targets
  • Add check of linked frameworks
  • Unify errors
  • Add support of tvOS and watchOS platforms
  • Check correct work with workspaces
  • Write tests

Author

Artem Novichkov, novichkoff93@gmail.com

License

Carting is available under the MIT license. See the LICENSE file for more info.

About

🚘 Simple tool for updating Carthage script

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 100.0%