Sha256: dfd320cc002ff07c60db493c3c18c17e0e01642852848a8bd7eff9bd9e98c4ca
Contents?: true
Size: 405 Bytes
Versions: 4
Compression:
Stored size: 405 Bytes
Contents
# frozen_string_literal: true module RuboCop module Katalyst class Error < StandardError; end # Your code goes here... PROJECT_ROOT = Pathname.new(__dir__).parent.parent.expand_path.freeze CONFIG_DEFAULT = PROJECT_ROOT.join("config", "default.yml").freeze CONFIG = YAML.safe_load(CONFIG_DEFAULT.read).freeze private_constant(:CONFIG_DEFAULT, :PROJECT_ROOT) end end
Version data entries
4 entries across 4 versions & 2 rubygems