module Bullet

def debug(title, message)

Experimental RBS support (using type sampling data from the type_fusion project).

def debug: (String title, String message) -> nil

This signature was generated using 41 samples from 1 application.

def debug(title, message)
  puts "[Bullet][#{title}] #{message}" if ENV['BULLET_DEBUG'] == 'true'
end