class Middleman::Profiling::RubyProfProfiler

def initialize

def initialize
  begin
    require 'ruby-prof'
  rescue LoadError
    raise "To use the --profile option, you must 'gem install ruby-prof' (and include it in your Gemfile if running under bundle exec)"
  end
end