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

- list all versions of an object - get a specific version of an object - enable, disable, and test a bucket's versioning state - etc

AWS::S3::Connection.prepare_path isn't properly escaping the plus sign in a key. This is because the plus sign is sometimes used to represent a space (at least according to the Ruby devs)...

Following this documentation i tried different ways of specifying groups for updating object ACL http://amazon.rubyforge.org/doc/classes/AWS/S3/ACL/Grantee.html grantee.group = 'Authenticated' => "Invalid group uri" grantee.id = '75........2a0' => "The XML you provided...

Hey, I've been trying to build a tool that allows me to put some data from STDIN into S3, and I have hit a brick wall with your S3 library....

The current find wasn't working for me on a bucket with a few thousand items that I'm using to cache documents. I was basically trying to find a doc, then...

~/.bundler/ruby/1.8/gems/aws-s3-0.6.2/lib/aws/../../support/faster-xml-simple/lib/faster_xml_simple.rb:162: [BUG] Segmentation fault ruby 1.8.7 (2009-06-12 patchlevel 174) [x86_64-linux], MBARI 0x6770, Ruby Enterprise Edition 2009.10

Since it takes ages to delete a folder or a bucket with some decent amount of files in it, it would be nice to make use of the multi-object deletion:...

Just a heads up, I think there's a collision with ruby facets on the Kernel __method__ patching. If anybody gets a 1 for 0 argument error, chances are something is...

Adding the following as the first line of `lib/aws/s3/extensions.rb` fixes a problem where the gem will not load in Ruby 1.9: ``` # encoding: BINARY ``` Without this you will...

Hi guys, I had wrote a class: ConversionsByBucket, and weird things stared to happen. After much hand wringing I tracked it down s3/extensions.rb overriding const_missing and hijacking modules/classes ending in...