Is there a gem or plugin, that can generate a Comments with columns names above the class definition in Active Record model? I'm pretty sure that I've seen something like this, but can't find it anywhere: Example:
# columns Defs
# name:string
# user_id:integer
# etc.
class Post < ActiveRecord::Base
end
I could as well write something like this, but I don't want to reinvent the wheel.
Thanks