Sha256: a1b611e53aa62268fada27360f5de5542828c5eecdd8cc71fc37f8ed0843165e
Contents?: true
Size: 1.76 KB
Versions: 4
Compression:
Stored size: 1.76 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 'rubygems' require 'rudy' require 'rudy/cli' require 'drydock' # 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
4 entries across 4 versions & 3 rubygems
Version | Path |
---|---|
sabat-rudy-0.8.0 | bin/rudy-sdb |
solutious-rudy-0.7.4 | bin/rudy-sdb |
solutious-rudy-0.7.5 | bin/rudy-sdb |
rudy-0.7.4 | bin/rudy-sdb |