Skip to content

kreshikhin/gulp-xcodebuild

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gulp Xcodebuild

NPM Version NPM Downloads Build Status

The package joins arguments of xcodebuild and returns a string prepared to executing in shell.

$ npm install gulp-xcodebuild

Usage

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

About

The package joins arguments of xcodebuild and returns a string prepared to executing in shell

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published