[jruby-dev] using regular expressions into jruby code

2009-08-28 Thread David Calavera
Hi, I'm working in a patch for an issue and I want to use a regular expression to solve it but I have a question, what regular expression engine should I use, java default pattern classes or joni engine? is there any convention for that? Thanks

Re: [jruby-dev] Policy concerning lib/ruby/1.9 lib/ruby/1.8

2009-08-28 Thread Ola Bini
Nick Sieger wrote: On Thu, Aug 27, 2009 at 7:36 PM, Hirotsugu Asariasari.r...@gmail.com wrote: What is the policy about these directories, which I assume are copies of MRI's counterparts. When do they get synchronized with MRI? There's no strict policy, but we try to upgrade them wholesale

[jruby-dev] [jira] Created: (JRUBY-3922) File.basename doesn't cope with UTF8 strings

2009-08-28 Thread Ben Summers (JIRA)
File.basename doesn't cope with UTF8 strings Key: JRUBY-3922 URL: http://jira.codehaus.org/browse/JRUBY-3922 Project: JRuby Issue Type: Bug Components: Core Classes/Modules Affects

Re: [jruby-dev] Policy concerning lib/ruby/1.9 lib/ruby/1.8

2009-08-28 Thread David Calavera
On Fri, Aug 28, 2009 at 2:21 PM, Ola Bini ola.b...@gmail.com wrote: Nick Sieger wrote: On Thu, Aug 27, 2009 at 7:36 PM, Hirotsugu Asariasari.r...@gmail.com wrote: What is the policy about these directories, which I assume are copies of MRI's counterparts. When do they get synchronized with

Re: [jruby-dev] using regular expressions into jruby code

2009-08-28 Thread Nick Sieger
On Fri, Aug 28, 2009 at 2:58 AM, David Calaveradavid.calav...@gmail.com wrote: Hi, I'm working in a patch for an issue and I want to use a regular expression to solve it but I have a question, what regular expression engine should I use, java default pattern classes or joni engine? is there any

Re: [jruby-dev] using regular expressions into jruby code

2009-08-28 Thread David Calavera
finally I used java regexes because it was a quite simple expression and the class where I was using it didn't have access to the runtime and I didn't want to change the api so much. You can take a look here: http://jira.codehaus.org/browse/JRUBY-3907 On Fri, Aug 28, 2009 at 6:42 PM, Nick Sieger