Sha256: d299718ebe039134a6d9bf7b4f4cc0ed6959e742fca7c1b779ad3005dfae8953
Contents?: true
Size: 581 Bytes
Versions: 8
Compression:
Stored size: 581 Bytes
Contents
# frozen_string_literal: true require 'libis/format/version' module Libis module Format autoload :Config, 'libis/format/config' autoload :TypeDatabase, 'libis/format/type_database' autoload :TypeDatabaseImpl, 'libis/format/type_database_impl' autoload :Identifier, 'libis/format/identifier' autoload :Tool, 'libis/format/tool' autoload :Converter, 'libis/format/converter' ROOT_DIR = File.absolute_path(File.join(File.dirname(__FILE__), '..', '..')) DATA_DIR = File.join(ROOT_DIR, 'data') TOOL_DIR = File.join(ROOT_DIR, 'tools') end end
Version data entries
8 entries across 8 versions & 1 rubygems