class Custom78Money < Money # Create a new money object using the Australian dollar currency def self.au_dollar(num) Money.new(num, "AUD") end # Recieve a money object with the same amount as the current Money object # in australian dollar def as_au_dollar exchange_to("AUD") end end