Public instance methods
info
()
[show source]
# File lib/rudy/cli/info.rb, line 7 7: def info 8: process_region @@global.region 9: oregions = Rudy::AWS::VALID_REGIONS - [@@global.region.to_sym] 10: if @option.all 11: oregions.each do |region| 12: Rudy::AWS::EC2.connect @@global.accesskey, @@global.secretkey, region 13: process_region region 14: end 15: else 16: li $/, "Other regions: " << oregions.join(', ') 17: end 18: end