Method: Chid::Commands::Currency::Convert#run

Defined in:
lib/chid/commands/currency/convert.rb

#runObject



30
31
32
33
# File 'lib/chid/commands/currency/convert.rb', line 30

def run
  currency = CurrencyApi.convert(amount: amount, to: to, from: from)
  puts "Converted amount: #{amount} #{from} is #{currency} #{to}"
end