18 lines
281 B
Ruby
18 lines
281 B
Ruby
# -*- ruby -*-
|
|
# vim: set nosta noet ts=4 sw=4 ft=ruby:
|
|
# encoding: utf-8
|
|
|
|
require 'mdbx_ext'
|
|
|
|
|
|
# Top level namespace for MDBX.
|
|
#
|
|
module MDBX
|
|
|
|
# The version of this gem.
|
|
# Note: the MDBX library version can be found in
|
|
# the 'LIBRARY_VERSION' constant.
|
|
VERSION = '0.0.1'
|
|
|
|
end
|
|
|