Given this simple Money
object query
Money.new(1000, "USD").to_s
=> "10.00"
How can I display the value with its symbol? I'm aware I can call money_object.symbol
but some currencies place the symbol before and other after the value. Im pretty sure there should be some easy method already for this? Haven't find it by reading into the documentation.