diff options
author | Thomas Wiest <twiest@users.noreply.github.com> | 2015-05-28 09:49:14 -0400 |
---|---|---|
committer | Thomas Wiest <twiest@users.noreply.github.com> | 2015-05-28 09:49:14 -0400 |
commit | 43d08da2a4af64015cd0fd83b36d843e51b21b0d (patch) | |
tree | 3a96ee3547c7a5a66c8ca4b7afb71263ba8a28aa /cloud.rb | |
parent | 551562cd54f06db6e96e6f8d8986bc08a27c7d8a (diff) | |
parent | 8fc2fe0b7ecf71b675158eabcc00a3a14218abe2 (diff) | |
download | openshift-43d08da2a4af64015cd0fd83b36d843e51b21b0d.tar.gz openshift-43d08da2a4af64015cd0fd83b36d843e51b21b0d.tar.bz2 openshift-43d08da2a4af64015cd0fd83b36d843e51b21b0d.tar.xz openshift-43d08da2a4af64015cd0fd83b36d843e51b21b0d.zip |
Merge pull request #252 from twiest/pr
Removed cloud.rb and it's associated libraries as it's no longer used.
Diffstat (limited to 'cloud.rb')
-rwxr-xr-x | cloud.rb | 29 |
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 |