12 lines
221 B
Ruby
12 lines
221 B
Ruby
|
# Fail if the C extension module isn't installed.
|
||
|
#
|
||
|
# Only really intended to be used by internal build scripts.
|
||
|
|
||
|
require 'rubygems'
|
||
|
require 'mongo'
|
||
|
begin
|
||
|
require 'mongo_ext/cbson'
|
||
|
rescue LoadError
|
||
|
Process.exit 1
|
||
|
end
|