class Money::Currency

def find(id)

Returns:
  • (Money::Currency) -

Parameters:
  • id (String, Symbol, #to_s) -- Used to look into +table+ and
def find(id)
  id = id.to_s.downcase.to_sym
  new(id)
rescue UnknownCurrency
  nil
end