aws-s3 icon indicating copy to clipboard operation
aws-s3 copied to clipboard

AWS-S3 is a Ruby implementation of Amazon's S3 REST API

Results 87 aws-s3 issues
Sort by recently updated
recently updated
newest added
trafficstars

Good afternoon, ``` require 'aws/s3' => true AWS::S3::Base.establish_connection!( :access_key_id => 'abc', :secret_access_key => '123' ) NameError: uninitialized constant AWS::S3::Base ``` This happened to me just 5 minutes ago. It would...

When attempting to find a bucket, a 403 response's `error` member, when raised, explodes due to a missing `message` member. ``` /usr/local/share/gems/gems/aws-s3-0.6.3/lib/aws/s3/error.rb:63:in `method_missing': undefined local variable or method `message' for...

something like https://ruby.awsblog.com/post/Tx2SU6TYJWQQLC3/Stubbing-AWS-Responses ?

I don't see any documentation/support for passing header/option to facilitate server-side encryption (which is being provided by aws sdk). Am I missing something here or does the gem need to...

It would be good to mention that Amazon released its official SDK in the mean-time: http://aws.amazon.com/sdk-for-ruby/

I wrongly reported it as a Devise bug, when is actually a aws-s3 bug: https://github.com/plataformatec/devise/issues/3220 > Looks like aws-s3 is messing with ActionView::Base.default_form_builder, that instead of returning ActionView::Helpers::FormBuilder is returning...

This warning appears to be produced by the aws-s3 gem when I run using ruby 2.1.0p0 (2013-12-25 revision 44422). This appears to be related to this isssue: https://github.com/aws/aws-sdk-ruby/pull/434 By the...

When objects are stored, the library should provide the possibility of automatically filling the Content-MD5 header and throwing an error if the integrity check fails.

I was trying to use this gem to set the Cache-Control header for my object like so: ``` ruby file_obj.metadata["Cache-Control"] = "max-age=155520000, public" ``` the result when I fetch the...