class Qbot::Storage::Driver

Public Class Methods

build() click to toggle source
# File lib/qbot/storage.rb, line 13
def build
  @target.new
end
inherited(subclass) click to toggle source
# File lib/qbot/storage.rb, line 9
def inherited(subclass)
  @target = subclass
end

Public Instance Methods

namespace(ns) click to toggle source
# File lib/qbot/storage.rb, line 19
def namespace(ns)
  raise 'Not implemented'
end