[Rails] Re: Problem when copying files somehow related to REXML

2009-07-22 Thread Javier Quevedo
I found the error. It was actually my mistake. Later in the code for whatever reason I was actually opening and trying to parse an image file with REXML, so it was breaking there, not in the previous part. Thank you so much for your useful replys. On Jul 22, 5:51 pm, sami wrote: > We had faced

[Rails] Re: Problem when copying files somehow related to REXML

2009-07-22 Thread sami
We had faced same type of problem while working on www.scrumpad.com , next generation scrum project management tool. In that case we have installed a gem rexml fix. that had saved us from this problem you can check that one. basically rexml is used for parsing On Jul 22, 3:39 pm, Javier Quevedo

[Rails] Re: Problem when copying files somehow related to REXML

2009-07-22 Thread Frederick Cheung
On Jul 22, 10:39 am, Javier Quevedo wrote: > > After that, I loop through the images array to get and copy all of the > image files. > I must insist that before throwing the exception, the files are > actually copied. Could you show the entire code - it's hard to say much from the fragments yo