Sha256: 6f2551308419440b12d1a60e6f33650a23003a851971ff3d1bb924abaee7b2c7
Contents?: true
Size: 1.29 KB
Versions: 5
Compression:
Stored size: 1.29 KB
Contents
# frozen_string_literal: true require 'rubycritic/source_control_systems/base' module RubyCritic class Configuration attr_reader :root attr_accessor :source_control_system, :mode, :format, :deduplicate_symlinks, :suppress_ratings, :open_with, :no_browser def set(options) self.mode = options[:mode] || :default self.root = options[:root] || 'tmp/rubycritic' self.format = options[:format] || :html self.deduplicate_symlinks = options[:deduplicate_symlinks] || false self.suppress_ratings = options[:suppress_ratings] || false self.open_with = options[:open_with] self.no_browser = options[:no_browser] end def root=(path) @root = File.expand_path(path) end def source_control_present? source_control_system && !source_control_system.is_a?(SourceControlSystem::Double) end end module Config def self.configuration @configuration ||= Configuration.new end def self.set(options = {}) configuration.set(options) end def self.method_missing(method, *args, &block) configuration.public_send(method, *args, &block) end def self.respond_to_missing?(symbol, include_all = false) configuration.respond_to_missing?(symbol) || super end end end
Version data entries
5 entries across 5 versions & 1 rubygems