module RqlParser
Base module of the parser
Constants
- VERSION
Public Class Methods
from_params(params)
click to toggle source
# File lib/rql_parser.rb, line 5 def self.from_params(params) Services::FromParams.run(params: params) end
from_params!(params)
click to toggle source
# File lib/rql_parser.rb, line 9 def self.from_params!(params) Services::FromParams.run!(params: params) end
parse(rql)
click to toggle source
# File lib/rql_parser.rb, line 13 def self.parse(rql) Services::Parse.run(rql: rql) end
parse!(rql)
click to toggle source
# File lib/rql_parser.rb, line 17 def self.parse!(rql) Services::Parse.run!(rql: rql) end