FossilOrigin-Name: ff761d0e8e8638b1f4d98d8d913d99591d83da0167d75b28f1bd186e1907ee47
23 lines
270 B
Ruby
23 lines
270 B
Ruby
# -*- ruby -*-
|
|
# vim: set nosta noet ts=4 sw=4 ft=ruby:
|
|
# encoding: utf-8
|
|
|
|
require 'loggability'
|
|
|
|
require 'mdbx_ext'
|
|
|
|
|
|
# Top level namespace for MDBX.
|
|
#
|
|
module MDBX
|
|
extend Loggability
|
|
|
|
# The version of this gem.
|
|
VERSION = '0.3.2'
|
|
|
|
|
|
log_as :mdbx
|
|
|
|
|
|
end # module MDBX
|
|
|