FossilOrigin-Name: 92f55b2d6cc9652cb9cb67e69588ed0f4f155086a5a160aae68a1f22e9114314
20 lines
301 B
Ruby
20 lines
301 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 # module MDBX
|
|
|