Sha256: a2648b035d871e92565168d5979aefc55dc2cbc835e9693712eb369840b4fbfc
Contents?: true
Size: 711 Bytes
Versions: 232
Compression:
Stored size: 711 Bytes
Contents
# frozen_string_literal: true module Avm module Sources class Configuration < ::EacConfig::OldConfigs module Rubocop RUBOCOP_COMMAND_KEY = 'ruby.rubocop.command' RUBOCOP_GEMFILE_KEY = 'ruby.rubocop.gemfile' def rubocop_command read_command(RUBOCOP_COMMAND_KEY) end def rubocop_gemfile gemfile_path = read_entry(RUBOCOP_GEMFILE_KEY) return nil if gemfile_path.blank? gemfile_path = gemfile_path.to_pathname.expand_path(storage_path.parent) return gemfile_path if gemfile_path.file? raise "Gemfile path \"#{gemfile_path}\" does not exist or is not a file" end end end end end
Version data entries
232 entries across 232 versions & 3 rubygems