module Queryalize

Constants

VERSION

Public Class Methods

from_hash(hash) click to toggle source
# File lib/queryalize.rb, line 8
def self.from_hash(hash)
  SerializableQuery.from_hash(hash)
end
from_json(json) click to toggle source
# File lib/queryalize.rb, line 12
def self.from_json(json)
  SerializableQuery.from_json(json)
end
from_yaml(yaml) click to toggle source
# File lib/queryalize.rb, line 16
def self.from_yaml(yaml)
  SerializableQuery.from_yaml(yaml)
end
new(klass) click to toggle source
# File lib/queryalize.rb, line 4
def self.new(klass)
  SerializableQuery.new(klass)
end