Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sharplet/rake-xcodebuild
Automate tedious and repetitive configuration of xcodebuild command line options.
https://github.com/sharplet/rake-xcodebuild
Last synced: 16 days ago
JSON representation
Automate tedious and repetitive configuration of xcodebuild command line options.
- Host: GitHub
- URL: https://github.com/sharplet/rake-xcodebuild
- Owner: sharplet
- License: mit
- Created: 2014-05-02T12:38:40.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-05-15T11:52:08.000Z (over 10 years ago)
- Last Synced: 2024-10-04T10:27:30.433Z (about 1 month ago)
- Language: Ruby
- Homepage:
- Size: 191 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Rake::Xcodebuild [![Build Status](https://travis-ci.org/sharplet/rake-xcodebuild.svg?branch=master)](https://travis-ci.org/sharplet/rake-xcodebuild)
Automate tedious and repetitive configuration of `xcodebuild` command line options.
Running your tests via `rake test` is as easy as putting this in your `Rakefile`:
```ruby
require 'rake/xcodebuild'task :default => [:test]
Rake::XcodebuildTask.new do |t|
t.action = 'test'
t.workspace = 'MyProject' # => automatically looks for MyProject.xcworkspace
t.scheme = 'MyProject'
t.xcodebuild_opts << '-sdk iphonesimulator'
end
# => `xcodebuild test -workspace MyProject.xcworkspace -scheme MyProject -sdk iphonesimulator`
```## Installation
Add this line to your application's Gemfile:
gem 'rake-xcodebuild'
And then execute:
$ bundle
Or install it yourself as:
$ gem install rake-xcodebuild
## Contributing
See the [Guidelines for Contributing](http://github.com/sharplet/rake-xcodebuild/blob/master/CONTRIBUTING.md).