CodeColorer
CodeColorer is the plugin which allows you to insert code snippets into the post with nice syntax highlighting. I want to show you example first:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | class Feed < ActiveRecord::Base SourceTypes = { :category => 0, :tag => 1 } define_enum :source_type, :raise_on_invalid => true #------------------------------------------------- # Accessors def video_ids v = self[:video_ids] v ? v.split(':').map(&:to_i) : [] end end |