class Adhoq::Result
Attributes
Public Class Methods
Source
# File lib/adhoq/result.rb, line 5 def initialize(header, rows = []) @header = header @rows = rows end
Public Instance Methods
Source
# File lib/adhoq/result.rb, line 14 def ==(obj) header == obj.header && rows == obj.rows end