2020-11-19 02:06:45 +00:00
|
|
|
# -*- 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.
|
2020-11-30 05:57:26 +00:00
|
|
|
#
|
2020-12-22 06:24:18 +00:00
|
|
|
# Note: the MDBX library version this gem was built
|
|
|
|
|
# against can be found in the 'LIBRARY_VERSION' constant.
|
2020-11-30 05:57:26 +00:00
|
|
|
#
|
2020-11-19 02:06:45 +00:00
|
|
|
VERSION = '0.0.1'
|
|
|
|
|
|
2020-11-30 05:57:26 +00:00
|
|
|
end # module MDBX
|
2020-11-19 02:06:45 +00:00
|
|
|
|