User toniowhola - Stack Overflowmost recent 30 from stackoverflow.com2010-03-18T22:11:28Zhttp://stackoverflow.com/feeds/user/130750http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1117272/error-happens-when-i-try-all-method-in-datamapper1error happens when I try "all" method in datamappertoniowholahttp://stackoverflow.com/users/1307502009-07-13T00:11:29Z2009-09-09T04:36:42Z
<p>When I try to do this in Sinatra, </p>
<pre>
class Comment
include DataMapper::Resource
property :id, Serial
property :body, Text
property :created_at, DateTime
end
get '/show' do
comment = Comment.all
@comment.each do |comment|
"#{comment.body}"
end
end
</pre>
<p>It returns this error, </p>
<p>ERROR: undefined method `bytesize' for #</p>
<p>Could anyone point me to the right direction? </p>
<p>Thanks, </p>