我試圖使用回形針寶石上載照片在我的鐵軌項目。回形針s3存儲不與aws-sdk寶石
我我的寶石文件:
gem "paperclip", "~> 2.4"
gem "aws-sdk"
在我的模型:
has_attached_file :image,
:styles => { :large => "600x600>", :standard => "450x450>", :medium => "300x300>", :medium_square => "310x310#", :small => "200x200>", :thumb => "150x150>", :small_square => "50x50#" },
:storage => :s3,
:s3_credentials => "#{Rails.root}/config/aws.yml",
:path => ":id/:hash/:style.:extension",
:hash_secret => ''
但我不斷收到關於AWS :: Base的一個unitiliazed常數錯誤?我看不出有什麼問題。
使用aws-sdk使用本地s3通信:http://www.loudthinking.org/2012/10/rails-how-to-use-aws-sdk-for-native-s3.html – 2012-10-02 19:30:07