# frozen_string_literal: true

# :nocov:
module Repository
  # Base class for Repository in Data Mapper pattern.
  class Base
    # Gem version, following [RubyGems.org](https://rubygems.org) and
    # [SemVer](http://semver.org/) conventions.
    VERSION = '0.4.0'
  end
end
# :nocov: