User toniowhola - Stack Overflow most recent 30 from stackoverflow.com 2010-03-18T22:11:28Z http://stackoverflow.com/feeds/user/130750 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1117272/error-happens-when-i-try-all-method-in-datamapper 1 error happens when I try "all" method in datamapper toniowhola http://stackoverflow.com/users/130750 2009-07-13T00:11:29Z 2009-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>