Re: [MacRuby-devel] REXML UTF-8 Encoding not found

2011-10-08 Thread Watson
Hi > https://github.com/ferrous26/MacRuby/commit/e4525fc4f9d91ffbad155340b99710e750aef5b7 I merged Mark's patch. This problem would be fixed with MacRuby nightly build. Thanks. 2011/10/8 Mark Rada : > It seems that I lied a little, the commit where I made the change is here: > > https://github.

Re: [MacRuby-devel] REXML UTF-8 Encoding not found

2011-10-07 Thread Mark Rada
It seems that I lied a little, the commit where I made the change is here: https://github.com/MacRuby/MacRuby/commit/b98b9da5d7da09a7dfa65d298df5d1c880d36ff2 but that is all the way back in May. It felt like it was just the other day. On the upside though, I have prepared a fix for the problem:

Re: [MacRuby-devel] REXML UTF-8 Encoding not found

2011-10-07 Thread Shaun August
Hi Mark, Thanks for the reply. If I were to roll back to a nightly build could you estimate what date I should be looking for? Thank you, Shaun On 2011-10-07, at 2:36 PM, Mark Rada wrote: > Hi Shaun, > > The problem here is that "rexml/encoding.rb" is trying to load "UTF-8.rb". > The prob

Re: [MacRuby-devel] REXML UTF-8 Encoding not found

2011-10-07 Thread Mark Rada
Hi Shaun, The problem here is that "rexml/encoding.rb" is trying to load "UTF-8.rb". The problem is that files should not include the file extension when requiring a file or else it will always load the .rb file and have to JIT the code instead of loading the .rbo file and use the already compi

Re: [MacRuby-devel] REXML UTF-8 Encoding not found

2011-10-07 Thread Shaun August
Hi Eloy, Thanks for responding. I tried to add the --stdlib rexml command and I now get an error about fileutils not being available. I was reading in Matt's excellent book (does that count as a quote?) that the --stdlib can only load one library rather than the entire set of libraries when I p

Re: [MacRuby-devel] REXML UTF-8 Encoding not found

2011-10-05 Thread Eloy DurĂ¡n
Did you include the standard library when running macruby_deploy? If you are excluding it, then you should be able to fix this with passing this to macruby_deploy: `--stdlib rexml`. On Oct 3, 2011, at 6:32 AM, saugust wrote: > Hi Everyone, > > I am trying to deploy an app that uses XMLSimple a