Class: Fbe::Award::Bill

Inherits:
Object
  • Object
show all
Defined in:
lib/fbe/award.rb

Overview

A bill.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeBill

Returns a new instance of Bill.



277
278
279
280
# File 'lib/fbe/award.rb', line 277

def initialize
  @lines = []
  @vars = {}
end

Instance Attribute Details

#varsObject (readonly)

Returns the value of attribute vars.



275
276
277
# File 'lib/fbe/award.rb', line 275

def vars
  @vars
end

Instance Method Details

#greetingObject



296
297
298
299
300
301
302
303
304
305
306
# File 'lib/fbe/award.rb', line 296

def greeting
  items = @lines.map { |l| "#{format('%+d', l[:v])} #{l[:t]}" }
  case items.size
  when 0
    "You've earned nothing. "
  when 1
    "You've earned #{format('%+d', points)} points. "
  else
    "You've earned #{format('%+d', points)} points for this: #{items.join('; ')}. "
  end
end

#line(value, text) ⇒ Object



286
287
288
289
290
# File 'lib/fbe/award.rb', line 286

def line(value, text)
  return if value.zero?
  text = text.gsub(/\$\{([a-z_0-9]+)\}/) { |_x| @vars[Regexp.last_match[1].to_sym] }
  @lines << { v: value, t: text }
end

#pointsObject



292
293
294
# File 'lib/fbe/award.rb', line 292

def points
  @lines.sum { |l| l[:v] }.to_f.round.to_i
end

#set(var, value) ⇒ Object



282
283
284
# File 'lib/fbe/award.rb', line 282

def set(var, value)
  @vars[var] = value
end