public
Description: StrokeDB is an embeddable distributed document database written in Ruby
Homepage: http://strokedb.com/
Clone URL: git://github.com/yrashk/strokedb.git
strokedb / lib / strokedb / views / docs_by_meta.rb
100644 12 lines (8 sloc) 0.156 kb
1
2
3
4
5
6
7
8
9
10
11
12
module StrokeDB
  
  ByMetas = View.define! "" do |view|
    def view.map(uuid, doc)
      doc.metas.each do |meta|
        
      end
    end
  end
  
end