Sha256: 9d1f9ed0fab00b68d87e2ca8b04fd5447cb9d0de245218cee23528036d0f3cc0

Contents?: true

Size: 717 Bytes

Versions: 192

Compression:

Stored size: 717 Bytes

Contents

#!/usr/bin/env ruby

require 'smartcloud'

if ARGV[0] == 'prereceive'
	raise "Please provide appname, username, oldrev, newrev and refname" unless ARGV[1] && ARGV[2] && ARGV[3] && ARGV[4] && ARGV[5]
	Smartcloud::Grids::Runner.prereceive_app(ARGV[1], ARGV[2], ARGV[3], ARGV[4], ARGV[5])
elsif ARGV[0] == 'apps'
	raise "Please provide appname" unless ARGV[2]
	if ARGV[1] == 'create'
		raise "Please provide username" unless ARGV[3]
		Smartcloud::Grids::Runner.create_app(ARGV[2], ARGV[3])
	elsif ARGV[1] == 'start'
		Smartcloud::Grids::Runner.start_app(ARGV[2])
	elsif ARGV[1] == 'stop'
		Smartcloud::Grids::Runner.stop_app(ARGV[2])
	elsif ARGV[1] == 'destroy'
		Smartcloud::Grids::Runner.destroy_app(ARGV[2])
	end
end

Version data entries

192 entries across 192 versions & 1 rubygems

Version Path
smartcloud-0.0.162 bin/runner
smartcloud-0.0.161 bin/runner
smartcloud-0.0.160 bin/runner
smartcloud-0.0.159 bin/runner
smartcloud-0.0.158 bin/runner
smartcloud-0.0.157 bin/runner
smartcloud-0.0.156 bin/runner
smartcloud-0.0.155 bin/runner
smartcloud-0.0.154 bin/runner
smartcloud-0.0.153 bin/runner
smartcloud-0.0.152 bin/runner
smartcloud-0.0.151 bin/runner
smartcloud-0.0.150 bin/runner
smartcloud-0.0.149 bin/runner
smartcloud-0.0.148 bin/runner
smartcloud-0.0.147 bin/runner
smartcloud-0.0.146 bin/runner
smartcloud-0.0.145 bin/runner
smartcloud-0.0.144 bin/runner
smartcloud-0.0.143 bin/runner