class Guard::RSpec::Inspectors::Factory

def create(options = {})

def create(options = {})
  case options[:failed_mode]
  when :focus  then FocusedInspector.new(options)
  when :keep   then KeepingInspector.new(options)
  else; SimpleInspector.new(options)
  end
end