Class: Capriza::Aws::S3file
- Inherits:
-
Object
- Object
- Capriza::Aws::S3file
- Defined in:
- lib/capriza-aws.rb
Instance Method Summary collapse
- #<=>(local_file) ⇒ Object
- #download ⇒ Object
- #get_metadata(key) ⇒ Object
-
#initialize(bucket, file_name, config) ⇒ S3file
constructor
A new instance of S3file.
- #set_metadata(key, value) ⇒ Object
- #upload(data, make_public = false, content_type = "application/zip") ⇒ Object
Constructor Details
Instance Method Details
#<=>(local_file) ⇒ Object
78 79 80 81 82 83 |
# File 'lib/capriza-aws.rb', line 78 def <=> (local_file) unless File.exist?(local_file) raise "File #{local_file} does not exist" end @obj.etag.gsub(/\"/, "") == Digest::MD5.hexdigest(File.read(local_file)) end |
#download ⇒ Object
66 67 68 |
# File 'lib/capriza-aws.rb', line 66 def download() @data = @obj.read end |
#get_metadata(key) ⇒ Object
74 75 76 |
# File 'lib/capriza-aws.rb', line 74 def (key) @obj.[key] end |
#set_metadata(key, value) ⇒ Object
70 71 72 |
# File 'lib/capriza-aws.rb', line 70 def (key, value) @obj.[key] = value end |
#upload(data, make_public = false, content_type = "application/zip") ⇒ Object
58 59 60 61 62 63 64 |
# File 'lib/capriza-aws.rb', line 58 def upload(data, make_public = false, content_type = "application/zip") @data = data @obj.write(@data) = @obj.head[:metadata] @obj.copy_to(@obj.key, :metadata => , :content_type => content_type) @obj.acl = :public_read if make_public end |