Sha256: 09562bdc715ae455592bd4d0ede653be4f241e6ec9ae2ef0c8575fe6114109bd

Contents?: true

Size: 671 Bytes

Versions: 20

Compression:

Stored size: 671 Bytes

Contents

#!/usr/bin/env ruby

# require 'byebug'

app_path = File.dirname(__FILE__)
lib_path = File.expand_path(File.join(File.dirname(app_path), 'lib'))

load_path << lib_path

require 'lorj.rb'

# Load global Config
oconfig = ForjConfig.new

processes = []

# Defines how to manage Maestro and forges
# create a maestro box. Identify a forge instance, delete it,...
processes << File.join(lib_path, 'forj', 'ForjCore.rb')

# Defines how cli will control FORJ features
# boot/down/ssh/...
processes << File.join(lib_path, 'forj', 'ForjCli.rb')

ocloud = ForjCloud.new(oconfig, 'hpcloud', processes)

oconfig.set(:box_name, '183')
oconfig.set(:box, 'maestro')
ocloud.Create(:ssh)

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
lorj-1.0.20 bin/cloud_test.rb
lorj-1.0.19 bin/cloud_test.rb
lorj-1.0.18 bin/cloud_test.rb
lorj-1.0.17 bin/cloud_test.rb
lorj-1.0.16 bin/cloud_test.rb
lorj-1.0.14 bin/cloud_test.rb
lorj-1.0.13 bin/cloud_test.rb
lorj-1.0.12 bin/cloud_test.rb
lorj-1.0.11 bin/cloud_test.rb
lorj-1.0.10 bin/cloud_test.rb
lorj-1.0.9 bin/cloud_test.rb
lorj-1.0.8 bin/cloud_test.rb
lorj-1.0.7 bin/cloud_test.rb
lorj-1.0.6 bin/cloud_test.rb
lorj-1.0.5 bin/cloud_test.rb
lorj-1.0.4 bin/cloud_test.rb
lorj-1.0.3 bin/cloud_test.rb
lorj-1.0.2 bin/cloud_test.rb
lorj-1.0.1 bin/cloud_test.rb
lorj-1.0.0 bin/cloud_test.rb