class Factual::Query::Match

Public Class Methods

new(api, table, params = {}) click to toggle source
Calls superclass method Factual::Query::Base::new
# File lib/factual/query/match.rb, line 4
def initialize(api, table, params = {})
  @table = table
  @path = "t/#{table}/match"
  @action = :read
  super(api, params)
end