Method: Paperclip::Storage::S3#s3_region

Defined in:
lib/paperclip/storage/s3.rb

#s3_regionObject



204
205
206
207
208
209
# File 'lib/paperclip/storage/s3.rb', line 204

def s3_region
  region = @options[:s3_region]
  region = region.call(self) if region.is_a?(Proc)

  region || s3_credentials[:s3_region]
end