happening
happening copied to clipboard
An EventMachine based S3 client
Hi, here's a bare minimum patch that implements Item#store, like the Object#store in the aws-s3 gem
I stumbled upon the missing of MockHttpRequest for version 1.0.0 of em-http-request. That's why I changed the tests to use WebMock, which cleaned up the tests a bit and made...
- Bucket listing can now be retrieved - Bucket listing tests - Updated to em-http-request 1.0.x series - Replaced EM::MockHttpRequest, which is no longer available, with webmock - Reduced test...
I've made 2 small changes. First, the deferrable object is passed back after execute is called. Second, I've set the deferred state appropriately after each internal callback. Together these changes...
I needed support for retrieving a list of objects in an S3 bucket so I've added a Happening::S3::Bucket class. It needs some specs before being considered for merging, but before...
Hi, Basically this is done by exposing the :port option and avoid the S3 specific features like the dns buckets when the port is provided. I have this working against...
Hi, Is it possible to stream a file on put requests? Like supported by em-http: ``` http = EventMachine::HttpRequest.new('http://www.website.com/').post :file => 'largefile.txt' ``` I've been trying to patch it but...
Is there a way to do that already? Or it needs to be added? Thanks
Hi, I need to upload some files on S3, and I would like to cleanup the tmp structure I created before on_success. ``` def upload_file dir, file f = dir...