class RubyCritic::Browser

def initialize(report_path)

def initialize(report_path)
  @report_path = report_path
end

def open

def open
  Launchy.open(report_path) do |exception|
    puts "Attempted to open #{report_path} and failed because #{exception}"
  end
end