Sha256: 55f3c7a5705739c93cee99675ccb951e772401cfcc2bef2c842f260981a6189f
Contents?: true
Size: 505 Bytes
Versions: 15
Compression:
Stored size: 505 Bytes
Contents
# frozen_string_literal: true module DeepCover module Tools end require_relative 'tools/require_relative_dir' extend Tools::RequireRelativeDir require_relative_dir 'tools' # The functions defined in the submodules of Tools can be accessed # either by extending the desired module, or all of them by extending # Tools, or by calling them directly Tool.my_function. module Tools constants.each do |module_name| include const_get(module_name) end extend self end end
Version data entries
15 entries across 15 versions & 1 rubygems