Sha256: 60295ac9d6cdcef04008316d8e602fe429a5a88ba4abdfdbdca68aba5715d89c

Contents?: true

Size: 1015 Bytes

Versions: 11

Compression:

Stored size: 1015 Bytes

Contents

# frozen_string_literal: true

require "dry/monads"
require "sod"
require "spek"

module Gemsmith
  module CLI
    module Actions
      # Handles the edit action for editing an installed gem.
      class Edit < Sod::Action
        include Import[:logger]
        include Dry::Monads[:result]

        description "Edit installed gem in default editor."

        on %w[-e --edit], argument: "GEM"

        def initialize(picker: Spek::Picker, editor: Tools::Editor.new, **)
          super(**)
          @picker = picker
          @editor = editor
        end

        def call gem_name
          case picker.call(gem_name).bind { |spec| editor.call spec }
            in Success(spec) then logger.info { "Editing: #{spec.named_version}." }
            in Failure(message) then log_error { message }
            else log_error { "Unable to handle edit action." }
          end
        end

        private

        attr_reader :picker, :editor

        def log_error(&) = logger.error(&)
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
gemsmith-22.10.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-22.9.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-22.8.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-22.7.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-22.6.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-22.5.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-22.4.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-22.3.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-22.2.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-22.1.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-22.0.0 lib/gemsmith/cli/actions/edit.rb