# File lib/rudy/utils.rb, line 107
107:     def bug(bugid, logger=STDERR)
108:       logger.puts "You have found a bug! If you want, you can email".color(:red)
109:       logger.puts 'rudy@solutious.com'.color(:red).bright << " about it. It's bug ##{bugid}.".color(:red)          
110:       logger.puts "Continuing...".color(:red)
111:       true # so we can string it together like: bug('1') && next if ...
112:     end