Sha256: 35b6dd62138e334909f1f2488c096beb02a89ebb6d25aeb767238625a607d56e
Contents?: true
Size: 1.1 KB
Versions: 4
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true 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 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
4 entries across 4 versions & 1 rubygems