Sha256: 1c1f33f4fe06bc3392dd5b35a5ed187fe9a811bd94509c14b0bd8b8c1d0687a0
Contents?: true
Size: 986 Bytes
Versions: 11
Compression:
Stored size: 986 Bytes
Contents
# frozen_string_literal: true require_relative "database" module Hanami module CLI module Commands module App module DB module Utils # @api private class Sqlite < Database # @api private def create_command rom_config true end # @api private def drop_command file_path.unlink true end # @api private def dump_command raise Hanami::CLI::NotImplementedError end # @api private def load_command raise Hanami::CLI::NotImplementedError end # @api private def file_path @file_path ||= Pathname("#{root_path}#{config.uri.path}").realpath end end end end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems