Class: Boss::News
Defined Under Namespace
Classes: Result
Instance Method Summary
collapse
Methods included from Resultset
#count, #initialize, #nextpage, #response
Instance Method Details
#resultset ⇒ Object
160
161
162
163
164
165
166
|
# File 'lib/boss.rb', line 160
def resultset
if count > 0
response.collect{|r| Result.new(r)}
else
response
end
end
|