Sha256: 7c49162071c84b9df6138d2e11b08b76ef59250e973eb2d87c8745f7cdb93600

Contents?: true

Size: 829 Bytes

Versions: 4

Compression:

Stored size: 829 Bytes

Contents

# Allow override of facts on the command line. Fact overrides can be supplied for the 'to' or 'from' catalog,
# or for both. There is some attempt to handle data types here (since all items on the command line are strings)
# by permitting a data type specification as well.
OctocatalogDiff::CatalogDiff::Cli::Options::Option.newoption(:fact_override) do
  has_weight 320

  def parse(parser, options)
    # Set 'fact_override_in' because more processing is needed, once the command line options
    # have been parsed, to make this into the final form 'fact_override'.
    OctocatalogDiff::CatalogDiff::Cli::Options.option_globally_or_per_branch(
      parser: parser,
      options: options,
      cli_name: 'fact-override',
      option_name: 'fact_override_in',
      desc: 'Override fact',
      datatype: []
    )
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
octocatalog-diff-0.5.6 lib/octocatalog-diff/catalog-diff/cli/options/fact_override.rb
octocatalog-diff-0.5.4 lib/octocatalog-diff/catalog-diff/cli/options/fact_override.rb
octocatalog-diff-0.5.3 lib/octocatalog-diff/catalog-diff/cli/options/fact_override.rb
octocatalog-diff-0.5.1 lib/octocatalog-diff/catalog-diff/cli/options/fact_override.rb