module Middleman::Features::CodeRay

def registered(app)

def registered(app)
  begin
    require 'haml-coderay'
  rescue LoadError
    puts "CodeRay not available. Install it with: gem install haml-coderay"
  end
end