This one is simple. lets say i have a model
class Post < ActiveRecord::Base
attr_accessible :author, :content, :title
end
and i want to get instance variables of this class with coffeescript, put those into an array, and work on them. Is there any special method for this out there?