module PatchesHelper def display_patches(ary) "" + "" + "" + "" + "" + ary.map {|item| "" + render_partial("patch", item) + ""}.join + "" + "
ProgramTitleOptions
" end def colorize_patch(patch_version) require 'syntax/convertors/html' convertor = Syntax::Convertors::HTML.for_syntax 'diff' <