Class: Fbe::Award::Bill
- Inherits:
-
Object
- Object
- Fbe::Award::Bill
- Defined in:
- lib/fbe/award.rb
Overview
A bill.
Instance Attribute Summary collapse
-
#vars ⇒ Object
readonly
Returns the value of attribute vars.
Instance Method Summary collapse
- #greeting ⇒ Object
-
#initialize ⇒ Bill
constructor
A new instance of Bill.
- #line(value, text) ⇒ Object
- #points ⇒ Object
- #set(var, value) ⇒ Object
Constructor Details
#initialize ⇒ Bill
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
#vars ⇒ Object (readonly)
Returns the value of attribute vars.
275 276 277 |
# File 'lib/fbe/award.rb', line 275 def vars @vars end |
Instance Method Details
#greeting ⇒ Object
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 |
#points ⇒ Object
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 |