Sha256: fba89c7b13392a5717456c6f66cd1b9e3e6797710c70eb85c00b6c7ed9c91bf6
Contents?: true
Size: 1.33 KB
Versions: 1
Compression:
Stored size: 1.33 KB
Contents
# frozen_string_literal: true require "yaml" require "zip" require_relative "index/version" require_relative "index/file_storage" require_relative "index/config" require_relative "index/pool" require_relative "index/type" require_relative "index/file_io" module Relaton module Index class Error < StandardError; end class << self # # Find or create index # # @param [String] type index type (ISO, IEC, etc.) # @param [String, nil] url external URL to index, used to fetch index for searching files # @param [String, nil] file output file name, default is config.filename # # @return [Relaton::Index::Type] typed index # def find_or_create(type, url: nil, file: nil) pool.type(type, url, file) end def close(type) pool.remove type end # # Create new index pool object or return existing # # @return [Relaton::Index::Pool] index pool # def pool @pool ||= Pool.new end # # Create new config object or return existing # # @return [Relaton::Index::Config] config object # def config @config ||= Config.new end # # Configure Relaton::Index # # @return [void] # def configure yield config end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
relaton-index-0.1.4 | lib/relaton/index.rb |