Sha256: c5e59c65bcfbe21fdc2172d8baf8b630413ee87558e7fc23e1a558663abe8a03

Contents?: true

Size: 403 Bytes

Versions: 3

Compression:

Stored size: 403 Bytes

Contents

module Ro
  class Db
    fattr :root

    def initialize(*args, &block)
      options = Map.options_for!(args)

      @root = String(args.shift || options[:root] || Ro.root)
    end

    def collections
    end

    def glob
    end

    def nodes
      42
    end

    class Collection
      fattr :basename

      def initialize(basename)
        @basename = basename.to_s
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ro-1.1.1 :w
ro-1.1.0 :w
ro-1.0.0 :w