Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
6k views

Rails Paperclip conflict between aws-s3 gem and right_aws gem. How to solve?

for a new App I want to use paperclip to store Files to S3. I already have installed the aws-s3 gem for another app. That seems to cause some problems, because Paperclip should use right_aws but is ...
3
votes
2answers
512 views

How to change file permission of all files in a S3 bucket using either aws-s3 gem or right_aws gem

Is there a way to change the permission of every single file in a S3 bucket using either aws-s3 gem or right_aws gem? I can't find it in the documentation. Do I have to do each file individually? I ...
3
votes
3answers
2k views

Amazon S3 temporary URL to image works in IE and Firefox but not Safari

I'm using Amazon S3 to host images. The S3 bucket is private, so I generate a temporary URL (using Right AWS) with a 5-minute expiry to allow the image to be rendered. The URL looks like this ...
1
vote
1answer
55 views

Setting owner of objects in an S3 bucket

I have been experimenting with S3 and they have this cool feature where you can set ACL's on the content of a bucket through a bucket policy. So for instance you can have a bunch of files with the ...
0
votes
2answers
145 views

How to set an instance name with right_aws

Is it possible to the set the name of an EC2 instance with right_aws like I can with the AWS Management Console?
0
votes
1answer
50 views

Right_aws ruby gem: Where do I have to store the AWS access keys and secret key?

Could you please tell me where do I have to store my aws access key and secret access key when using Right_aws to access SDB?
0
votes
0answers
41 views

Right_aws: Weird Expires Behavior In S3_interface#Get_link

I found out that the expires parameter passed to get_link() in s3_interface is limited to 1 year in seconds. For longer expires, it is required to pass (Time.now.utc + expires) in get_link() because ...
0
votes
1answer
213 views

How can I resolve the Paperclip conflict with RightAWS and AWS-S3 gems

I must use RightAWS for certain things. However, I can only get Paperclip uploads to S3 working when RightAWS is nowhere in my Gemfile. Since v2.3.11, Paperclip has used AWS-S3, switching from ...
0
votes
3answers
417 views

How to delete files using the right-aws gem

I need to find out how to delet a file on my S3 bucket using the right-aws gem (https://github.com/rightscale/right_aws). The current doc (the README at github) isn't very helpful... Has anyone tried ...
0
votes
1answer
372 views

Sqs vs SqsGen2 using RightScale right_aws GEM

I'm trying to use the right_aws (1.10.0) GEM with Rails, and I've reduced my problem to a 3-line irb session. The following works require 'rubygems' require 'right_aws' sqs = ...