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.
266 267 268 269 |
# File 'lib/fbe/award.rb', line 266 def initialize @lines = [] @vars = {} end |
Instance Attribute Details
#vars ⇒ Object (readonly)
Returns the value of attribute vars.
264 265 266 |
# File 'lib/fbe/award.rb', line 264 def vars @vars end |
Instance Method Details
#greeting ⇒ Object
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 |
#points ⇒ Object
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 |