Sha256: 7dcebae5527ef89d259ae65684e8780867c8678df141a23f3f3b83930b9125d3

Contents?: true

Size: 638 Bytes

Versions: 6

Compression:

Stored size: 638 Bytes

Contents

# frozen_string_literal: true

module InstallGemLocal
  module RemoveGem
    def remove_gem
      puts ''
      puts 'Remove Gem'.red
      file_exists = file_names
      if file_exists.count > 1
        remove_file_from_path(multiple_version_selection(include_all: true))
      elsif file_exists.count == 1
        remove_file_from_path(file_exists.first)
      else
        ap 'Gem not exist'
      end
    end

    def remove_file_from_path(file_name)
      return if file_name == 'exit'

      if file_name == 'all'
        tty_command.run('rm *.gem')
      else
        tty_command.run("rm #{file_name}")
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
install_gem_local-0.1.19 lib/install_gem_local/action/remove_gem.rb
install_gem_local-0.1.18 lib/install_gem_local/action/remove_gem.rb
install_gem_local-0.1.11 lib/install_gem_local/action/remove_gem.rb
install_gem_local-0.1.10 lib/install_gem_local/action/remove_gem.rb
install_gem_local-0.1.9 lib/install_gem_local/action/remove_gem.rb
install_gem_local-0.1.8 lib/install_gem_local/action/remove_gem.rb