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.



266
267
268
269
# File 'lib/fbe/award.rb', line 266

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

Instance Attribute Details

#varsObject (readonly)

Returns the value of attribute vars.



264
265
266
# File 'lib/fbe/award.rb', line 264

def vars
  @vars
end

Instance Method Details

#greetingObject



285
286
287
288
289
290
291
292
293
294
295
# File 'lib/fbe/award.rb', line 285

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



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

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



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

def points
  @lines.map { |l| l[:v] }.inject(&:+).to_i
end

#set(var, value) ⇒ Object



271
272
273
# File 'lib/fbe/award.rb', line 271

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