RubyFlow The Ruby and Rails community linklog

Table Cloth - Easy to use tables in Rails views

I just launched Table Cloth. It’s an easy way of generating tables in Rails views. It gives the ability to render actions as well.

Small example: %= simple_table_for @users, with: UserTable % or!

%= simple_table_for @users do |t| % <% t.column :name %> <% t.column :email %> <% t.action {|user| link_to user } %> % end %

Check it out! github.com/bobbytables/table_cloth

Post a comment

You can use basic HTML markup (e.g. <a>) or Markdown.

As you are not logged in, you will be
directed via GitHub to signup or sign in