2014-10-17 17:51:36 -04:00
|
|
|
require 'ffi'
|
|
|
|
|
2015-11-15 18:13:43 -05:00
|
|
|
# @api private
|
2014-10-17 17:51:36 -04:00
|
|
|
module RbBug
|
|
|
|
extend FFI::Library
|
|
|
|
ffi_lib 'ruby'
|
2015-05-31 16:44:09 -04:00
|
|
|
attach_function :rb_bug, %i[string varargs], :void
|
2014-10-17 17:51:36 -04:00
|
|
|
|
|
|
|
# Call the test bug
|
|
|
|
#
|
|
|
|
# @return [undefined]
|
|
|
|
def self.call
|
|
|
|
rb_bug('%s', :string, 'test bug')
|
|
|
|
end
|
|
|
|
|
|
|
|
end # RbBug
|