UPDATE ... funny I found the answer right after posting this question, I just had to add
:html => { :enctype => "multipart/form-data" }
to my form :)
I have installed activeadmin + paperclip and followed the instructions here for paperclip: https://github.com/thoughtbot/paperclip#readme, but paperclip is not working nor giving any erros, I don't know where I went wrong.
This is my model:
class Instructor < ActiveRecord::Base
# id :integer not null, primary key
# name :string
# data :text
# created_at :datetime
# updated_at :datetime
# picture_file_name :string(255)
# picture_content_type :string(255)
# picture_file_size :integer
# picture_updated_at :datetime
has_attached_file :picture,
:styles => {
:medium => "236x330>", :thumb => "60x60>"
},
:storage => :s3,
:s3_credentials => "#{RAILS_ROOT}/config/s3.yml",
:path => ":attachment/:id/:style.:extension",
:bucket => 'xxx_xxx'
has_many :event_instructors
has_many :events, :through => :event_instructors
has_many :lessons
end
This is the form for active admin:
ActiveAdmin.register Instructor do
form do |f|
f.inputs do
f.input :name
f.input :data
f.input :picture, :as => :file
end
f.buttons do
f.commit_button
end
end
end
And the development log at the moment of saving:
Started POST "/admin/instructors/1" for 127.0.0.1 at 2011-08-03 20:34:21 -0700
Processing by Admin::InstructorsController#update as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"e5K6yrS6tb/X8OTwLqYL07xJcFdLbf9ZzAWnIFu7c/Y=", "instructor"=> {"name"=>"Some name", "data"=>"Lorem ipsum dolor..", "picture"=>"pic.jpg"}, "commit"=>"Update Instructor", "id"=>"1"}
AdminUser Load (0.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 2 LIMIT 1
Instructor Load (1.1ms) SELECT "instructors".* FROM "instructors" WHERE "instructors"."id" = 1 LIMIT 1
[paperclip] Saving attachments.
Redirected to http://localhost:3000/admin/instructors/1
Completed 302 Found in 960ms
I am starting to work with rails (3.0.5), this is my first app, so probably it is just something I am missing. Any help?