Sha256: e0844e02992dde8c178f939397dc73cde7dc97262aaa35145981acca4bd890a3

Contents?: true

Size: 914 Bytes

Versions: 17

Compression:

Stored size: 914 Bytes

Contents

# frozen_string_literal: true

require "dry/monads"
require "spek"

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

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

          @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 error { message }
            else error { "Unable to handle edit action." }
          end
        end

        private

        attr_reader :picker, :editor

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

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
gemsmith-19.3.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-19.2.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-19.1.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-19.0.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-18.9.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-18.8.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-18.7.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-18.6.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-18.5.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-18.4.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-18.3.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-18.2.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-18.1.1 lib/gemsmith/cli/actions/edit.rb
gemsmith-18.1.0 lib/gemsmith/cli/actions/edit.rb
gemsmith-18.0.2 lib/gemsmith/cli/actions/edit.rb
gemsmith-18.0.1 lib/gemsmith/cli/actions/edit.rb
gemsmith-18.0.0 lib/gemsmith/cli/actions/edit.rb