Skip to content

Instantly share code, notes, and snippets.

@skuroki
Last active August 29, 2015 14:15
Show Gist options
  • Save skuroki/a506a3c93a134746d529 to your computer and use it in GitHub Desktop.
Save skuroki/a506a3c93a134746d529 to your computer and use it in GitHub Desktop.
ActiveAdminのtable_forに渡したcollectionが勝手にdecorateされるようにする ref: http://qiita.com/skuroki@github/items/bcc99e456463901e44fa
module TableDecoration
def build(obj, *attrs)
ActiveDecorator::Decorator.instance.decorate(obj)
super(obj, *attrs)
end
end
module ActiveAdmin
module Views
class TableFor < Arbre::HTML::Table
prepend TableDecoration
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment