Class: RuboCop::ConfigStore
- Inherits:
-
Object
- Object
- RuboCop::ConfigStore
- Defined in:
- lib/rubocop/config_store.rb
Overview
Handles caching of configurations and association of inspected ruby files to configurations.
Instance Method Summary collapse
- #for(file_or_dir) ⇒ Object
- #force_default_config! ⇒ Object
-
#initialize ⇒ ConfigStore
constructor
A new instance of ConfigStore.
- #options_config=(options_config) ⇒ Object
Constructor Details
#initialize ⇒ ConfigStore
Returns a new instance of ConfigStore.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/rubocop/config_store.rb', line 7 def initialize # @options_config stores a config that is specified in the command line. # This takes precedence over configs located in any directories @options_config = nil # @path_cache maps directories to configuration paths. We search # for .rubocop.yml only if we haven't already found it for the # given directory. @path_cache = {} # @object_cache maps configuration file paths to # configuration objects so we only need to load them once. @object_cache = {} end |
Instance Method Details
#for(file_or_dir) ⇒ Object
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/rubocop/config_store.rb', line 32 def for(file_or_dir) return @options_config if @options_config dir = if File.directory?(file_or_dir) file_or_dir else File.dirname(file_or_dir) end @path_cache[dir] ||= ConfigLoader.configuration_file_for(dir) path = @path_cache[dir] @object_cache[path] ||= begin print "For #{dir}: " if ConfigLoader.debug? ConfigLoader.configuration_from_file(path) end end |
#force_default_config! ⇒ Object
28 29 30 |
# File 'lib/rubocop/config_store.rb', line 28 def force_default_config! @options_config = ConfigLoader.default_configuration end |
#options_config=(options_config) ⇒ Object
22 23 24 25 26 |
# File 'lib/rubocop/config_store.rb', line 22 def () loaded_config = ConfigLoader.load_file() @options_config = ConfigLoader.merge_with_default(loaded_config, ) end |