class Chid::Commands::Currency::List

Public Instance Methods

run() click to toggle source
# File lib/chid/commands/currency/list.rb, line 26
def run
  types = CurrencyApi::SOURCES
  puts "Types available:\n\n"
  types.each { |k, v| puts "#{k} => #{v}"}
end