# File lib/rudy/aws/s3.rb, line 32 32: def create_bucket(name, location=nil) 33: opts = {} 34: opts[:location] = location.to_s.upcase if location 35: ::AWS::S3::Bucket.create(name, opts) 36: end