Sha256: efa62a54dfadadb6abec2613c7c83c773eb4a29b6da05b0f15190e49cf78775e
Contents?: true
Size: 1.74 KB
Versions: 14
Compression:
Stored size: 1.74 KB
Contents
#!/usr/bin/ruby # = Rudy SDB # # === A Rudy interface to Amazon Simple Storage Service # # # # See rudy-sdb -h for usage # $:.unshift File.join(File.dirname(__FILE__), '..', 'lib') # Put our local lib in first place require 'drydock' require 'rudy' require 'rudy/cli' # Command-line interface for bin/rudy-sdb module RudyCLI_SDB extend Drydock # ----------------------------------- AMAZON SDB COMMANDS -------- # ------------------------------------------------------------------ about "Displays the SimpleDB domains associated to your account" action :C, :create, "Create a domain" action :D, :destroy, "Destroy a domain" argv :name command :domains => Rudy::CLI::AWS::SDB::Domains # -------------------------------- RUDY-SDB MISCELLANEOUS -------- # ------------------------------------------------------------------ default :domains debug :off end #puts Rudy::Utils.banner("THIS IS RUBY #{RUBY_VERSION}") if Drydock.debug? # We call Drydock specifically otherwise it will run at_exit. Rye also # uses at_exit for shutting down the ssh-agent. Ruby executes at_exit # blocks in reverse order so if Drydock is required first, it's block # will run after Rye shuts down the ssh-agent. begin Drydock.run!(ARGV, STDIN) if Drydock.run? && !Drydock.has_run? rescue Drydock::ArgError, Drydock::OptError => ex STDERR.puts ex.message STDERR.puts ex.usage rescue Drydock::InvalidArgument => ex STDERR.puts ex.message rescue Rudy::Error => ex STDERR.puts ex.message STDERR.puts ex.backtrace if Drydock.debug? rescue => ex STDERR.puts "ERROR (#{ex.class.to_s}): #{ex.message}" STDERR.puts ex.backtrace if Drydock.debug? rescue Interrupt puts "#{$/}Exiting... " exit 1 rescue SystemExit # Don't balk end
Version data entries
14 entries across 14 versions & 2 rubygems