views:

22

answers:

2

Which Amazon s3 gem is compatible with Rails 2.3 ? It needs to be compatible with the Paperclip gem too.

+1  A: 

Paperclip supports S3 natively. Here is formatted documentation for that module. It uses the aws/s3 library for s3 access that you can use also. For direct access.

Sam C
+1  A: 

I'ved used this with rails 2.3.5 and paperclip:

config.gem "aws-s3", :lib => "aws/s3"
config.gem "paperclip"

in your .gems file:

aws-s3
paperclip
Jesse Wolgamott