# File lib/ruote/storage/composite_storage.rb, line 116
    def prepare_base_methods

      singleton = class << self; self; end

      STORAGE_BASE_METHODS.each do |method, type|

        singleton.send(:define_method, method) do |*args|
          storage(type).send(method, *args)
        end
      end
    end