Sha256: 3d3aea581b2b7879c3556e4aa92b811e00816a05b4907d1e8ad9e32cb0089717
Contents?: true
Size: 583 Bytes
Versions: 3
Compression:
Stored size: 583 Bytes
Contents
# frozen_string_literal: true module FactoryBot module Instrumentation # The configuration for the instrumentation API. class Configuration include ActiveSupport::Configurable # The instrumentation configuration file path we should use, # defaults to config/instrumentation.yml config_accessor(:config_file) do 'config/instrumentation.yml' end # You can set a fixed application name here, # defaults to your Rails application name in a titlized version config_accessor(:application_name) { nil } end end end
Version data entries
3 entries across 3 versions & 1 rubygems