Sha256: 72a2673b3b61d7d0cdb9c8c9c0a0ae3cdd66676cc621f0e17a36d2edb7334ee8
Contents?: true
Size: 779 Bytes
Versions: 3
Compression:
Stored size: 779 Bytes
Contents
# frozen_string_literal: true module Milestoner module CLI module Actions # Handles the gem configuration action. class Config include Milestoner::Import[:kernel, :logger] def initialize(configuration: Configuration::Loader::CLIENT, **) super(**) @configuration = configuration end def call action case action when :edit then edit when :view then view else logger.error { "Invalid configuration action: #{action}." } end end private attr_reader :configuration def edit = kernel.system("$EDITOR #{configuration.current}") def view = kernel.system("cat #{configuration.current}") end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
milestoner-15.3.0 | lib/milestoner/cli/actions/config.rb |
milestoner-15.2.2 | lib/milestoner/cli/actions/config.rb |
milestoner-15.2.1 | lib/milestoner/cli/actions/config.rb |