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
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
- Fork it ( https://github.com/KazuCocoa/xcody/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request