tech-angels / annotator

Keep model fields commented in your rails apps.
MIT License
64 stars 5 forks source link

please keep magic comments. #6

Closed jugyo closed 12 years ago

jugyo commented 12 years ago

before:

# coding: utf-8
...

after:

# Attributes:
# * id [integer, primary, not null] - primary key
# * created_at [datetime, not null] - creation time
# * name [string]
# * updated_at [datetime, not null] - last update time
# coding: utf-8 # <= OMG!!
...
comboy commented 12 years ago

Oh yes, this is really bad, thanks for reporting.