class Devtools::Config::Yardstick

Yardstick configuration

Constants

FILE
OPTIONS

Public Instance Methods

options() click to toggle source

Options hash that Yardstick understands

@return [Hash]

@api private

# File lib/devtools/config.rb, line 141
def options
  OPTIONS.each_with_object({}) do |name, hash|
    hash[name] = raw.fetch(name, nil)
  end
end