Class: Boss::Web
Defined Under Namespace
Classes: Result
Instance Method Summary
collapse
Methods included from Resultset
#count, #initialize, #nextpage, #response
Instance Method Details
#resultset ⇒ Object
256
257
258
259
260
261
262
|
# File 'lib/boss.rb', line 256
def resultset
if count > 0
response.collect{|r| Result.new(r)}
else
response
end
end
|