Sha256: cf933a8d1d9e8567af2405e54bb23de7425463165deaa0df01c62534767415b0
Contents?: true
Size: 1.66 KB
Versions: 2
Compression:
Stored size: 1.66 KB
Contents
# typed: true # frozen_string_literal: true require "pathname" require "yaml" module Packwerk class Configuration class << self def from_path(path = Dir.pwd) raise ArgumentError, "#{File.expand_path(path)} does not exist" unless File.exist?(path) default_packwerk_path = File.join(path, DEFAULT_CONFIG_PATH) if File.file?(default_packwerk_path) from_packwerk_config(default_packwerk_path) else new end end private def from_packwerk_config(path) new( YAML.load_file(path) || {}, config_path: path ) end end DEFAULT_CONFIG_PATH = "packwerk.yml" DEFAULT_INCLUDE_GLOBS = ["**/*.{rb,rake,erb}"] DEFAULT_EXCLUDE_GLOBS = ["{bin,node_modules,script,tmp,vendor}/**/*"] attr_reader( :include, :exclude, :root_path, :package_paths, :custom_associations, :load_paths, :inflections_file, :config_path, ) def initialize(configs = {}, config_path: nil) @include = configs["include"] || DEFAULT_INCLUDE_GLOBS @exclude = configs["exclude"] || DEFAULT_EXCLUDE_GLOBS root = config_path ? File.dirname(config_path) : "." @root_path = File.expand_path(root) @package_paths = configs["package_paths"] || "**/" @custom_associations = configs["custom_associations"] || [] @load_paths = (configs["load_paths"] || []).uniq @inflections_file = File.expand_path(configs["inflections_file"] || "config/inflections.yml", @root_path) @parallel = configs.key?("parallel") ? configs["parallel"] : true @config_path = config_path end def parallel? @parallel end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
packwerk-1.4.0 | lib/packwerk/configuration.rb |
packwerk-1.3.2 | lib/packwerk/configuration.rb |