Sha256: fc0d6b5a0516106f5d95bcb5917e4061a32f7d2430d9bc280c926bdc68c6bf9c
Contents?: true
Size: 469 Bytes
Versions: 265
Compression:
Stored size: 469 Bytes
Contents
# frozen_string_literal: true module RuboCop class CLI # Execution environment for a CLI command. # @api private class Environment attr_reader :options, :config_store, :paths def initialize(options, config_store, paths) @options = options @config_store = config_store @paths = paths end # Run a command in this environment. def run(name) Command.run(self, name) end end end end
Version data entries
265 entries across 256 versions & 24 rubygems