module InstallGemLocal::RemoveGem

Public Instance Methods

remove_file_from_path(file_name) click to toggle source
# File lib/install_gem_local/action/remove_gem.rb, line 18
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
remove_gem() click to toggle source
# File lib/install_gem_local/action/remove_gem.rb, line 5
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, title_interpol: 'TO Remove'))
  elsif file_exists.count == 1
    remove_file_from_path(file_exists.first)
  else
    ap 'Gem not exist'
  end
end