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