Re: [Rails] Re: undefined method join for STRING error

2010-03-10 Thread Colin Law
On 10 March 2010 07:58, Colin Law clan...@googlemail.com wrote: On 9 March 2010 22:13, John Merlino li...@ruby-forum.com wrote: John Merlino wrote: Hey all, I was converting  a haml file to erb and when finished, I ran the app and got this error message: NoMethodError in

[Rails] Re: undefined method join for STRING error

2010-03-09 Thread John Merlino
John Merlino wrote: Hey all, I was converting a haml file to erb and when finished, I ran the app and got this error message: NoMethodError in Students#student_fail Showing app/views/students/student_fail.erb where line #40 raised: undefined method `join' for #String:0x105a5e0c8

Re: [Rails] Re: undefined method join for STRING error

2010-03-09 Thread Colin Law
On 9 March 2010 22:13, John Merlino li...@ruby-forum.com wrote: John Merlino wrote: Hey all, I was converting  a haml file to erb and when finished, I ran the app and got this error message: NoMethodError in Students#student_fail Showing app/views/students/student_fail.erb where line

[Rails] Re: undefined method join

2010-02-11 Thread Frederick Cheung
On Feb 10, 6:40 pm, JohnMerlino stoici...@aol.com wrote: Hey all, I get an undefined method `join' for #String  NoMethodError. One what line does this error occur? Also if you're going to post code, you might as well make it a complete piece of code - what you've posted there isn't

Re: [Rails] Re: undefined method join

2010-02-11 Thread Jeffrey L. Taylor
Quoting Frederick Cheung frederick.che...@gmail.com: On Feb 10, 6:40 pm, JohnMerlino stoici...@aol.com wrote: Hey all, I get an undefined method `join' for #String  NoMethodError. join isn't defined for strings. Arrays of strings, yes, a single string, no. Jeffrey -- You

Re: [Rails] Re: undefined method join

2010-02-11 Thread Curtis Cooley
On Thu, Feb 11, 2010 at 7:37 AM, Jeffrey L. Taylor r...@abluz.dyndns.org wrote: Quoting Frederick Cheung frederick.che...@gmail.com: On Feb 10, 6:40 pm, JohnMerlino stoici...@aol.com wrote: Hey all, I get an undefined method `join' for #String  NoMethodError. join isn't defined for