Class: Zold::Remove

Inherits:
Object
  • Object
show all
Defined in:
lib/zold/commands/remove.rb

Overview

REMOVE command

Instance Method Summary collapse

Constructor Details

#initialize(wallets:, log: Log::Quiet.new) ⇒ Remove

Returns a new instance of Remove.



35
36
37
38
# File 'lib/zold/commands/remove.rb', line 35

def initialize(wallets:, log: Log::Quiet.new)
  @wallets = wallets
  @log = log
end

Instance Method Details

#remove(id, _) ⇒ Object



52
53
54
55
# File 'lib/zold/commands/remove.rb', line 52

def remove(id, _)
  @wallets.find(id) { |w| File.delete(w.path) }
  @log.info("Wallet #{id} removed")
end

#run(args = []) ⇒ Object



40
41
42
43
44
45
46
47
48
49
50
# File 'lib/zold/commands/remove.rb', line 40

def run(args = [])
  opts = Slop.parse(args, help: true, suppress_errors: true) do |o|
    o.banner = "Usage: zold remove [ID...] [options]
Available options:"
    o.bool '--help', 'Print instructions'
  end
  mine = Args.new(opts, @log).take || return
  (mine.empty? ? @wallets.all : mine.map { |i| Id.new(i) }).each do |id|
    remove(id, opts)
  end
end