module NumberToYen::ToYen

Public Instance Methods

to_ja(options = {}) click to toggle source
# File lib/number_to_yen/to_yen.rb, line 10
def to_ja(options = {})
  ::NumberToYen::Converter.new(self, options).convert
end
to_yen(options = {}) click to toggle source
# File lib/number_to_yen/to_yen.rb, line 6
def to_yen(options = {})
  "#{to_ja(options)}円"
end