module S3restful::S3

Public Class Methods

ssl_options() click to toggle source
# File lib/s3restful/s3.rb, line 4
def self.ssl_options
  @_ssl_options ||= {
    :cert_chain_file => nil,
    :verify_peer => false
  }
end
ssl_options=(val) click to toggle source
# File lib/s3restful/s3.rb, line 11
def self.ssl_options=(val)
  @_ssl_options = val
end