Project

xcody

0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Simple Xcode command wrapper
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Xcody

Simple wrapper for Xcode commands with Ruby. Please use other library if you would like to use rich features. e.g. https://github.com/CocoaPods/Xcodeproj

Gem Version

Installation

Add this line to your application's Gemfile:

gem 'xcody'

And then execute:

$ bundle

Or install it yourself as:

$ gem install xcody

Usage

# Build "your_project.xcodeproj"
log_file = "file/to/path.log"

Xcody.new.xcode_build.project("your_project.xcodeproj").build.run(log_file, true)

or

Xcody.new.xcode_build.project("your_project.xcodeproj").build_for_testing.run

Contributing

  1. Fork it ( https://github.com/KazuCocoa/xcody/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request