# frozen_string_literal: true # Result - database model for benchmark results class Result < Sequel::Model many_to_one :hardware many_to_one :benchmarks def formatted_score return @score end end