attrtastic
attrtastic copied to clipboard
Attrtastic, in its assumtion, should be similar in usage to formtastic and ease of displaying AR record informations (attributes). It should help scafforld show/index pages.
I've been working on adding better support to attrtastic for attributes that are ActiveRecord associations. Currently, attrtastic just calls `.to_s` on them, and you end up with something like `#`....
``` class Post include Mongoid::Document include Mongoid::Timestamps field :name, :type => String field :age, :type => Integer field :cool, :type => Float end ``` results in ``` Showing /home/sallas/Aptana Studio...
will produce following output: Namevalue instead of expected output: Namevalue