Sha256: 8d19b43083470206d7c7219e30ab07f10bb17772742c313826c2445504718963
Contents?: true
Size: 489 Bytes
Versions: 17
Compression:
Stored size: 489 Bytes
Contents
# frozen_string_literal: true require 'rubocop/codeur/version' require 'yaml' module RuboCop # RuboCop Codeur project namespace module Codeur 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
17 entries across 17 versions & 1 rubygems