class Object
Constants
- REQUIRED_HEADERS
- REQUIRED_LIBRARIES
Public Instance Methods
abort_build(filetype, filename)
click to toggle source
# File ext/cqpid/extconf.rb, line 63 def abort_build filetype, filename abort "Missing required #{filetype}: #{filename}" end
require_header(header)
click to toggle source
# File ext/cqpid/extconf.rb, line 71 def require_header header abort_build "header", header unless have_header header end
require_library(lib)
click to toggle source
# File ext/cqpid/extconf.rb, line 67 def require_library lib abort_build "library", lib unless have_library lib end