Module: MoneyRails::ActionViewExtension

Defined in:
lib/money-rails/helpers/action_view_extension.rb

Instance Method Summary collapse

Instance Method Details

#currency_symbolObject



4
5
6
# File 'lib/money-rails/helpers/action_view_extension.rb', line 4

def currency_symbol
  (:span, Money.default_currency.symbol, :class => "currency_symbol")
end

#humanized_money(value, options = {}) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/money-rails/helpers/action_view_extension.rb', line 8

def humanized_money(value, options={})
  if !options || !options.is_a?(Hash)
    warn "humanized_money now takes a hash of formatting options, please specify { :symbol => true }"
    options = { :symbol => options }
  end

  options = {
    :no_cents_if_whole => MoneyRails::Configuration.no_cents_if_whole.nil? ? true : MoneyRails::Configuration.no_cents_if_whole,
    :symbol => false
  }.merge(options)
  options.delete(:symbol) if options[:disambiguate]

  if value.is_a?(Money)
    value.format(options)
  elsif value.respond_to?(:to_money)
    value.to_money.format(options)
  else
    ""
  end
end

#humanized_money_with_symbol(value, options = {}) ⇒ Object



29
30
31
# File 'lib/money-rails/helpers/action_view_extension.rb', line 29

def humanized_money_with_symbol(value, options={})
  humanized_money(value, options.merge(:symbol => true))
end

#money_without_cents(value, options = {}) ⇒ Object



33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/money-rails/helpers/action_view_extension.rb', line 33

def money_without_cents(value, options={})
  if !options || !options.is_a?(Hash)
    warn "money_without_cents now takes a hash of formatting options, please specify { :symbol => true }"
    options = { :symbol => options }
  end

  options = {
    :no_cents => true,
    :no_cents_if_whole => false,
    :symbol => false
  }.merge(options)

  humanized_money(value, options)
end

#money_without_cents_and_with_symbol(value) ⇒ Object



48
49
50
# File 'lib/money-rails/helpers/action_view_extension.rb', line 48

def money_without_cents_and_with_symbol(value)
  money_without_cents(value, :symbol => true)
end