Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kreshikhin/gulp-xcodebuild
The package joins arguments of xcodebuild and returns a string prepared to executing in shell
https://github.com/kreshikhin/gulp-xcodebuild
ci gulp xcode xcodebuild
Last synced: 26 days ago
JSON representation
The package joins arguments of xcodebuild and returns a string prepared to executing in shell
- Host: GitHub
- URL: https://github.com/kreshikhin/gulp-xcodebuild
- Owner: kreshikhin
- Created: 2016-06-28T21:54:49.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-06-29T10:39:50.000Z (over 8 years ago)
- Last Synced: 2024-09-29T04:02:48.362Z (about 1 month ago)
- Topics: ci, gulp, xcode, xcodebuild
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gulp Xcodebuild
[![NPM Version][npm-image]][npm-url]
[![NPM Downloads][downloads-image]][downloads-url]
[![Build Status][travis-image]][travis-url]The package joins arguments of xcodebuild and returns a string prepared to executing in shell.
```shell
$ npm install gulp-xcodebuild
```# Usage
```js
var gulp = require('gulp');
var shell = require('gulp-shell');
var xcodebuild = require('gulp-xcodebuild');gulp.task('build', shell.task([{
xcodebuild({
workspace: "./Example.xcworkspace",
sdk: "iphoneos9.3",
scheme: "Example"
}, 'build')
], {verbose: true}));gulp.task('default', ['build']);
```
## License
[MIT](LICENSE)
[npm-image]: https://img.shields.io/npm/v/gulp-xcodebuild.svg
[npm-url]: https://npmjs.org/package/gulp-xcodebuild
[downloads-image]: https://img.shields.io/npm/dm/gulp-xcodebuild.svg
[downloads-url]: https://npmjs.org/package/gulp-xcodebuild
[travis-image]: https://img.shields.io/travis/kreshikhin/gulp-xcodebuild/master.svg
[travis-url]: https://travis-ci.org/kreshikhin/gulp-xcodebuild