dennismonsewicz
dennismonsewicz

Reputation: 25542

Rails 3 and AWS::S3 Ruby Gem

I am following the documentation (http://amazon.rubyforge.org/) to try to begin working on S3 into my application (for serving files to the end user) but I keep running into errors.

Here is my Model:

class File < AWS::S3::S3Object
  set_current_bucket_to 'test-bucket'
end

This is what I am trying via the Rails Console:

File.find 'test.pdf'

But I keep getting this error:

undefined method `find' for File:Class

Not sure what I am doing wrong here... anyone else run into this issue?

Upvotes: 0

Views: 249

Answers (1)

roman-roman
roman-roman

Reputation: 2796

File is not a very good name for your model as it gets overwrited by Ruby's standart class File (docs). Just choose another name and everything will just work!

Upvotes: 1

Related Questions