Sha256: b9265764f97c78631151467f74f54c260231ca7a5dd868977d82ecbc459e06c8
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
require "blobby/filesystem_store" require "blobby/http_store" require "blobby/in_memory_store" require "blobby/version" require "uri" # BLOB storage. # module Blobby class << self # Instantiate a BLOB-store based on a storage-address URI. # An appropriate store impementation will be selected, based on # URI-scheme. # # @param uri [URI] storage address # def store(uri) uri = URI(uri) factory = store_factories[uri.scheme] fail ArgumentError, "unknown store type: #{uri}" if factory.nil? factory.from_uri(uri) end def register_store_factory(uri_scheme, factory) store_factories[uri_scheme] = factory end private def store_factories @store_factories ||= {} end end register_store_factory nil, FilesystemStore register_store_factory "file", FilesystemStore register_store_factory "http", HttpStore register_store_factory "https", HttpStore register_store_factory "in-memory", InMemoryStore register_store_factory "mem", InMemoryStore end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
blobby-1.1.0 | lib/blobby.rb |