Displaying 1 result from an estimated 1 matches for "dooshbag".
2008 Jan 19
1
private method `split' called for...
hi,
I''m trying to split a string up as follows:
>> @ruby = "I like carrots"
=> "I like carrots"
>> @type = @ruby.split[2][0,@ruby.split[2].length-1]
=> "carrot"
which works fine in the console...but when I try to run it on my site, I
get the error:
private method `split'' called for #<List:0xb681084c>
What could be the