method
announce
v1.2.6 -
Show latest stable
- Class:
ActiveRecord::Migration
announce(message)public
No documentation available.
# File activerecord/lib/active_record/migration.rb, line 246
def announce(message)
text = "#{name}: #{message}"
length = [0, 75 - text.length].max
write "== %s %s" % [text, "=" * length]
end