FEATURE: remove dependency of Redcarpet

PERF: cache fancy_title in topics table

New pure ruby implementation is far more flexible and easier to amend.
This commit is contained in:
Sam
2015-09-24 13:37:53 +10:00
parent 9507573d5e
commit ffb8cb8cac
7 changed files with 483 additions and 13 deletions
@@ -0,0 +1,5 @@
class AddFancyTitleToTopic < ActiveRecord::Migration
def change
add_column :topics, :fancy_title, :string, limit: 400, null: true
end
end