Sha256: 309c85fd075c2b815b350dccddda00038715310ee591349030749b6ae9c84ea2
Contents?: true
Size: 484 Bytes
Versions: 8
Compression:
Stored size: 484 Bytes
Contents
# frozen_string_literal: true module Rubysmith module CLI module Actions # Handles parsing of Command Line Interface (CLI) publish options. class Publish def initialize extension: Extensions::Milestoner, container: Container @extension = extension @container = container end def call(configuration) = extension.call(configuration) private attr_reader :extension, :container end end end end
Version data entries
8 entries across 8 versions & 1 rubygems