module MDQuery

a DSL for specifying analytic queries

Public Class Methods

dataset(&proc) click to toggle source

define a Dataset with the DSL

  • proc the DatasetDSL Proc

# File lib/mdquery.rb, line 9
def self.dataset(&proc)
  MDQuery::DSL::DatasetDSL.new(&proc).send(:build)
end