Method: Worldfootball::Page#assert
- Defined in:
- lib/worldfootball/page.rb
#assert(cond, msg) ⇒ Object
102 103 104 105 106 107 108 109 |
# File 'lib/worldfootball/page.rb', line 102 def assert( cond, msg ) if cond # do nothing else puts "!!! assert failed (in parse page) - #{msg}" exit 1 end end |