mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 22:59:39 +02:00
* Update hard-coded currency UI with currency specific params * Rename extension methods to match currency option names; Move cents extension to numeric class extension * Use currency's precision to show the cents part in accounts show page --------- Co-authored-by: Sriram Krishnan <sriram@seafoodsouq.com>
13 lines
213 B
Ruby
13 lines
213 B
Ruby
class String
|
|
def unit
|
|
CURRENCY_OPTIONS[self.to_sym][:unit]
|
|
end
|
|
|
|
def separator
|
|
CURRENCY_OPTIONS[self.to_sym][:separator]
|
|
end
|
|
|
|
def precision
|
|
CURRENCY_OPTIONS[self.to_sym][:precision]
|
|
end
|
|
end
|