app/controllers/abouts_controller.rb
class AboutsController < ApplicationController Similar blocks of code found in 2 locations. Consider refactoring. def show about = File.read(Rails.root + 'ABOUT.md') markdown = Redcarpet::Markdown.new(Redcarpet::Render::HTML, autolink: true, tables: true) @html_about = markdown.render(about) end end