summaryrefslogtreecommitdiffstats
path: root/cloud.rb
diff options
context:
space:
mode:
authorTroy Dawson <tdawson@redhat.com>2015-06-12 12:49:37 -0500
committerTroy Dawson <tdawson@redhat.com>2015-06-12 12:49:37 -0500
commitc650920bc7b0043e59fa3439f48f61d5fa211f2d (patch)
tree3e1f882f5bc7fe419f13a134a71927cb6484fa86 /cloud.rb
parent124ca40c134a40b2e6823ab3c4bfe329580d7eaa (diff)
parent42806b6745c747843b71eaf08b62aeee5e450ab1 (diff)
downloadopenshift-c650920bc7b0043e59fa3439f48f61d5fa211f2d.tar.gz
openshift-c650920bc7b0043e59fa3439f48f61d5fa211f2d.tar.bz2
openshift-c650920bc7b0043e59fa3439f48f61d5fa211f2d.tar.xz
openshift-c650920bc7b0043e59fa3439f48f61d5fa211f2d.zip
Merge branch 'master' into prod
Diffstat (limited to 'cloud.rb')
-rwxr-xr-xcloud.rb29
1 files changed, 0 insertions, 29 deletions
diff --git a/cloud.rb b/cloud.rb
deleted file mode 100755
index 934066662..000000000
--- a/cloud.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/env ruby
-
-require 'thor'
-require_relative 'lib/gce_command'
-require_relative 'lib/aws_command'
-
-# Don't buffer output to the client
-STDOUT.sync = true
-STDERR.sync = true
-
-module OpenShift
- module Ops
- class CloudCommand < Thor
- desc 'gce', 'Manages Google Compute Engine assets'
- subcommand "gce", GceCommand
-
- desc 'aws', 'Manages Amazon Web Services assets'
- subcommand "aws", AwsCommand
- end
- end
-end
-
-if __FILE__ == $0
- SCRIPT_DIR = File.expand_path(File.dirname(__FILE__))
- Dir.chdir(SCRIPT_DIR) do
- # Kick off thor
- OpenShift::Ops::CloudCommand.start(ARGV)
- end
-end