Sha256: e7e12325d8305771250c572275201cf75ec22d38dd4d22fe8c1a2cff8d43e58d

Contents?: true

Size: 254 Bytes

Versions: 2

Compression:

Stored size: 254 Bytes

Contents

require 'xcodebuild'

module XcodeProject
	class Builder < XcodeBuild::Tasks::BuildTask
		def initialize (&block)
			super(block)
		end

		def build
			run('build')
		end

		def clean
			run('clean')
		end

		def archive
			run('archive')
		end
	end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
xcodeproject-0.2.4 lib/xcodeproject/builder.rb
xcodeproject-0.2.3 lib/xcodeproject/builder.rb