attrtastic icon indicating copy to clipboard operation
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.

Results 3 attrtastic issues
Sort by recently updated
recently updated
newest added

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

todo