<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-14108</id>
	<title>Nabble - JRuby - Dev</title>
	<updated>2009-11-08T07:28:36Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/JRuby---Dev-f14108.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/JRuby---Dev-f14108.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26254732</id>
	<title>Re: [jira] Created: (JRUBY-4218) jruby loads src/builtin/generator.rb ahead of any other file named generator</title>
	<published>2009-11-08T07:28:36Z</published>
	<updated>2009-11-08T07:28:36Z</updated>
	<author>
		<name>Hirotsugu Asari</name>
	</author>
	<content type="html">&lt;br&gt;On Nov 7, 2009, at 3:02 PM, James Britt wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hirotsugu Asari wrote:
&lt;br&gt;&amp;gt;&amp;gt; I haven't read too much into the issue, so correct me if I'm wrong.
&lt;br&gt;&amp;gt;&amp;gt; As I understand it, by the time org.jruby.Ruby.parseFile() is &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; called on test.rb, an org.jruby.Ruby.init() has already been called &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; and builtins has already been loaded. By the same token, &amp;quot;prelude&amp;quot;, &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;java&amp;quot;, etc., are also susceptible to this startup logic.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I don't think so.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I added a puts call to to my copy of src/builtin.generator.rb to &amp;nbsp;
&lt;br&gt;&amp;gt; announce when it was loaded. &amp;nbsp;I only see that if I call &amp;quot;require &amp;nbsp;
&lt;br&gt;&amp;gt; 'generator' (no matter how I arrange my $: values).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If you take test.rb, drop the call to &amp;quot;require 'generator'&amp;quot;, and &amp;nbsp;
&lt;br&gt;&amp;gt; have it print something and exit, src/builtin.generator.rb &amp;nbsp;does not &amp;nbsp;
&lt;br&gt;&amp;gt; get loaded.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So It appears to be &amp;nbsp;a load path issue.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; James
&lt;/div&gt;&lt;br&gt;Hi, James,
&lt;br&gt;&lt;br&gt;You're right about what is actually loaded. Upon further reading, I &amp;nbsp;
&lt;br&gt;see that JRuby won't load these builtin libraries during startup; it &amp;nbsp;
&lt;br&gt;just populates builtinLibraries.
&lt;br&gt;&lt;br&gt;When it comes time to 'require', &amp;nbsp;
&lt;br&gt;org.jruby.runtime.load.LoadService.findLibraryWithoutCWD() looks for &amp;nbsp;
&lt;br&gt;built-in libraries first no matter what. There, only builtinLibraries &amp;nbsp;
&lt;br&gt;is consulted to find an appropriate library.
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4218%29-jruby-loads-src-builtin-generator.rb-ahead-of-any-other-file-named-generator-tp26224801p26254732.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26253479</id>
	<title>[jira] Created: (JRUBY-4222) [1.9] Enumerator.with_index accepts an starting index</title>
	<published>2009-11-08T04:49:55Z</published>
	<updated>2009-11-08T04:49:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">[1.9] Enumerator.with_index accepts an starting index
&lt;br&gt;-----------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4222
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4222&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4222&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: Core Classes/Modules, Ruby 1.9
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: David Calavera
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Attachments: with_index.patch
&lt;br&gt;&lt;br&gt;the attached patch solves the bug. Rubyspec already contains some specs to test this behavior.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4222%29--1.9--Enumerator.with_index-accepts-an-starting-index-tp26253479p26253479.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26248543</id>
	<title>Re: [jira] Created: (JRUBY-4218) jruby loads src/builtin/generator.rb ahead of any other file named generator</title>
	<published>2009-11-07T13:02:18Z</published>
	<updated>2009-11-07T13:02:18Z</updated>
	<author>
		<name>James Britt</name>
	</author>
	<content type="html">Hirotsugu Asari wrote:
&lt;br&gt;&amp;gt; I haven't read too much into the issue, so correct me if I'm wrong.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; As I understand it, by the time org.jruby.Ruby.parseFile() is called on 
&lt;br&gt;&amp;gt; test.rb, an org.jruby.Ruby.init() has already been called and builtins 
&lt;br&gt;&amp;gt; has already been loaded. By the same token, &amp;quot;prelude&amp;quot;, &amp;quot;java&amp;quot;, etc., are 
&lt;br&gt;&amp;gt; also susceptible to this startup logic.
&lt;br&gt;&lt;br&gt;I don't think so.
&lt;br&gt;&lt;br&gt;I added a puts call to to my copy of src/builtin.generator.rb to 
&lt;br&gt;announce when it was loaded. &amp;nbsp;I only see that if I call &amp;quot;require 
&lt;br&gt;'generator' (no matter how I arrange my $: values).
&lt;br&gt;&lt;br&gt;If you take test.rb, drop the call to &amp;quot;require 'generator'&amp;quot;, and have it 
&lt;br&gt;print something and exit, src/builtin.generator.rb &amp;nbsp;does not get loaded.
&lt;br&gt;&lt;br&gt;So It appears to be &amp;nbsp;a load path issue.
&lt;br&gt;&lt;br&gt;James
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;br&gt;Neurogami - Smart application development
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.neurogami.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.neurogami.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26248543&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;james@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4218%29-jruby-loads-src-builtin-generator.rb-ahead-of-any-other-file-named-generator-tp26224801p26248543.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26245406</id>
	<title>Re: Package support?</title>
	<published>2009-11-07T06:43:58Z</published>
	<updated>2009-11-07T06:43:58Z</updated>
	<author>
		<name>Charles Oliver Nutter-4</name>
	</author>
	<content type="html">Ok, I see that there is rudimentary package support based on the
&lt;br&gt;relative dir in which the file lives. Is that what &amp;quot;we&amp;quot; want? One
&lt;br&gt;thing that's always bugged me about Java files is that they have to be
&lt;br&gt;in the dir structure; but on the other hand, we can't make it *not*
&lt;br&gt;require .class files be in that structure.
&lt;br&gt;&lt;br&gt;Perhaps what actually annoyed me was that you had to put it in the
&lt;br&gt;appropriate path *and* have a &amp;quot;package&amp;quot; declaration in the file?
&lt;br&gt;&lt;br&gt;On Sat, Nov 7, 2009 at 2:51 PM, Charles Oliver Nutter
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26245406&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;headius@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I'm adding package support now, but if you (Ryan) already added it,
&lt;br&gt;&amp;gt; let me know. It should be pretty basic, at any rate; an attr_accessor
&lt;br&gt;&amp;gt; :package on Script and a PackageNode + macro to create it.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Exciting example:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; package org.jruby
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - Charlie
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Package-support--tp26244993p26245406.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26244993</id>
	<title>Package support?</title>
	<published>2009-11-07T05:51:06Z</published>
	<updated>2009-11-07T05:51:06Z</updated>
	<author>
		<name>Charles Oliver Nutter-4</name>
	</author>
	<content type="html">I'm adding package support now, but if you (Ryan) already added it,
&lt;br&gt;let me know. It should be pretty basic, at any rate; an attr_accessor
&lt;br&gt;:package on Script and a PackageNode + macro to create it.
&lt;br&gt;&lt;br&gt;Exciting example:
&lt;br&gt;&lt;br&gt;package org.jruby
&lt;br&gt;&lt;br&gt;- Charlie
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Package-support--tp26244993p26244993.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26241848</id>
	<title>Re: [jira] Created: (JRUBY-4218) jruby loads src/builtin/generator.rb ahead of any other file named generator</title>
	<published>2009-11-06T19:36:26Z</published>
	<updated>2009-11-06T19:36:26Z</updated>
	<author>
		<name>Hirotsugu Asari</name>
	</author>
	<content type="html">I haven't read too much into the issue, so correct me if I'm wrong.
&lt;br&gt;&lt;br&gt;As I understand it, by the time org.jruby.Ruby.parseFile() is called &amp;nbsp;
&lt;br&gt;on test.rb, an org.jruby.Ruby.init() has already been called and &amp;nbsp;
&lt;br&gt;builtins has already been loaded. By the same token, &amp;quot;prelude&amp;quot;, &amp;nbsp;
&lt;br&gt;&amp;quot;java&amp;quot;, etc., are also susceptible to this startup logic.
&lt;br&gt;&lt;br&gt;On Nov 5, 2009, at 6:14 PM, James Britt (JIRA) wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; jruby loads src/builtin/generator.rb &amp;nbsp;ahead of any other file named &amp;nbsp;
&lt;br&gt;&amp;gt; generator
&lt;br&gt;&amp;gt; -----------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4218
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4218&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4218&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: Core Classes/Modules
&lt;br&gt;&amp;gt; &amp;nbsp; Affects Versions: JRuby 1.5
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: jruby 1.5.0.dev (ruby 1.8.7 patchlevel 174) &amp;nbsp;
&lt;br&gt;&amp;gt; (2009-11-05 6586) (Java HotSpot(TM) Client VM 1.6.0_14) [i386-java]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Kubuntu 8.04.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: James Britt
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Example; 2 files, in the same directory.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; #------- generator.rb -----------
&lt;br&gt;&amp;gt; warn &amp;quot;#{__FILE__} is loaded&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; class MyGen
&lt;br&gt;&amp;gt; def foo
&lt;br&gt;&amp;gt; &amp;nbsp; __FILE__
&lt;br&gt;&amp;gt; end
&lt;br&gt;&amp;gt; end
&lt;br&gt;&amp;gt; #--------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; #--------------- test.rb -------------------
&lt;br&gt;&amp;gt; here = File.expand_path(File.dirname(__FILE__))
&lt;br&gt;&amp;gt; $:.unshift here
&lt;br&gt;&amp;gt; require 'generator.rb'
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; begin
&lt;br&gt;&amp;gt; p MyGen.new.foo
&lt;br&gt;&amp;gt; rescue
&lt;br&gt;&amp;gt; warn $!
&lt;br&gt;&amp;gt; end
&lt;br&gt;&amp;gt; #--------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Line 2 in test.rb forces the current directory to the head of the &amp;nbsp;
&lt;br&gt;&amp;gt; load path, so
&lt;br&gt;&amp;gt; local files should be found and loaded first.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Execute test.rb using MRI (for example)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; $ ruby test.rb
&lt;br&gt;&amp;gt; /home/james/tmp/jruby-require-bug/generator.rb is loaded
&lt;br&gt;&amp;gt; &amp;quot;/home/james/tmp/jruby-require-bug/generator.rb&amp;quot;
&lt;br&gt;&amp;gt; $
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Try with jruby:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; $ ruby jtest.rb
&lt;br&gt;&amp;gt; uninitialized constant MyGen
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; JRuby is loading sr/builtin/generator.rb despite the values in $:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; (You can check this by adding a puts statement to that file to &amp;nbsp;
&lt;br&gt;&amp;gt; indicate when it gets loaded.)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; This message is automatically generated by JIRA.
&lt;br&gt;&amp;gt; -
&lt;br&gt;&amp;gt; If you think it was sent incorrectly contact one of the &amp;nbsp;
&lt;br&gt;&amp;gt; administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;&amp;gt; -
&lt;br&gt;&amp;gt; For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4218%29-jruby-loads-src-builtin-generator.rb-ahead-of-any-other-file-named-generator-tp26224801p26241848.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26237895</id>
	<title>Re: Where was fileutils gone?</title>
	<published>2009-11-06T12:03:47Z</published>
	<updated>2009-11-06T12:03:47Z</updated>
	<author>
		<name>Yoko Harada</name>
	</author>
	<content type="html">Hi Vladimir,
&lt;br&gt;&lt;br&gt;On Fri, Nov 6, 2009 at 2:17 PM, Vladimir Sizikov &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26237895&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vsizikov@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Hi Yoko,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; While we're at it, how do you launch you test runs for the embedded stuff?
&lt;br&gt;&amp;gt; 'ant run-junit-embed' or something else?
&lt;br&gt;&lt;br&gt;I run 'ant run-junit-embed' and click run-junit-embed target on NetBeans.
&lt;br&gt;&lt;br&gt;&amp;gt; When running 'ant run-junit-embed', I see occasional stacktraces
&lt;br&gt;&amp;gt; during the runs,
&lt;br&gt;&amp;gt; but the end result is all OK. Is that how it is supposed to be?
&lt;br&gt;&lt;br&gt;Exceptions raised NOT from MultipleScriptsRunnerTest are normal. I'm
&lt;br&gt;testing whether the exceptions are raised as I expected or not. But,
&lt;br&gt;exceptions from MultipleScriptsRunnerTest show something wrong are
&lt;br&gt;happening there. In that test, I'm trying to test all scripts under
&lt;br&gt;the test directory. Some of exceptions are perhaps raised because
&lt;br&gt;usages are wrong. Some of them are probably bugs of embedding API or
&lt;br&gt;JRuby only when scripts are executed from embedding API.
&lt;br&gt;&lt;br&gt;I should fix bugs and usages, but currently, I run
&lt;br&gt;MultipleScriptsRunnerTest to know things are not going worse. So, I
&lt;br&gt;neglect all exceptions so that test can go through as many test as
&lt;br&gt;possible. This is why results are OK although exceptions are raised.
&lt;br&gt;&lt;br&gt;BTW, thank you for testing embedding. Your report was helpful since I
&lt;br&gt;don't have windows at all.
&lt;br&gt;&lt;br&gt;-Yoko
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt;  --Vladimir
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Fri, Nov 6, 2009 at 6:27 PM, Yoko Harada &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26237895&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;yokolet@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; On Fri, Nov 6, 2009 at 10:25 AM, Hirotsugu Asari &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26237895&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;asari.ruby@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; If you keep up with trunk, often build artifacts get in the way over time.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Try 'ant clean jar', which I find effective in such a case.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thank you. You're right. After I did &amp;quot;ant clean,&amp;quot; all tests passed.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; -Yoko
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hiro
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On Nov 6, 2009, at 8:31 AM, Yoko Harada &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26237895&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;yokolet@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Today, many embed test failed because of the error:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;   /Users/yoko/DevSpace/jruby~main/lib/ruby/1.8/tmpdir.rb:7:in
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; `require': IO error -- fileutils (LoadError)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; This happned on rev a0decb3. The tests passed successfully on rev
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; 481fa4d, so a change after that causes this error.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Where was fileutils gone?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; -Yoko
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;   &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;   &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;    &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;    &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Where-was-fileutils-gone--tp26232920p26237895.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26237283</id>
	<title>Re: Where was fileutils gone?</title>
	<published>2009-11-06T11:17:03Z</published>
	<updated>2009-11-06T11:17:03Z</updated>
	<author>
		<name>Vladimir Sizikov-2</name>
	</author>
	<content type="html">Hi Yoko,
&lt;br&gt;&lt;br&gt;While we're at it, how do you launch you test runs for the embedded stuff?
&lt;br&gt;'ant run-junit-embed' or something else?
&lt;br&gt;When running 'ant run-junit-embed', I see occasional stacktraces
&lt;br&gt;during the runs,
&lt;br&gt;but the end result is all OK. Is that how it is supposed to be?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&amp;nbsp; --Vladimir
&lt;br&gt;&lt;br&gt;On Fri, Nov 6, 2009 at 6:27 PM, Yoko Harada &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26237283&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;yokolet@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Fri, Nov 6, 2009 at 10:25 AM, Hirotsugu Asari &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26237283&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;asari.ruby@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; If you keep up with trunk, often build artifacts get in the way over time.
&lt;br&gt;&amp;gt;&amp;gt; Try 'ant clean jar', which I find effective in such a case.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thank you. You're right. After I did &amp;quot;ant clean,&amp;quot; all tests passed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -Yoko
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; Hiro
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Nov 6, 2009, at 8:31 AM, Yoko Harada &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26237283&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;yokolet@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Today, many embed test failed because of the error:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;   /Users/yoko/DevSpace/jruby~main/lib/ruby/1.8/tmpdir.rb:7:in
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; `require': IO error -- fileutils (LoadError)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; This happned on rev a0decb3. The tests passed successfully on rev
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 481fa4d, so a change after that causes this error.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Where was fileutils gone?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; -Yoko
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;   &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;   &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;    &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Where-was-fileutils-gone--tp26232920p26237283.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26236669</id>
	<title>[jira] Created: (JRUBY-4221) AR-JDBC: CREATE VIEW wrongly executed as query, fails because doesn't return result set</title>
	<published>2009-11-06T10:36:55Z</published>
	<updated>2009-11-06T10:36:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">AR-JDBC: CREATE VIEW wrongly executed as query, fails because doesn't return result set
&lt;br&gt;---------------------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4221
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4221&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4221&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: Miscellaneous
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.3.1
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: JRuby 1.3.1 on JDK 1.6.0_16; Rails 2.3.2; fully updated Windows 2008 Enterprise; fully updated MS SQL Server 2005
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Christopher Jeris
&lt;br&gt;&lt;br&gt;&lt;br&gt;[I was unable to file this bug on the AR-JDBC project on kenai; I got the message &amp;quot;Errors: Reporter: Reporter is required&amp;quot;, but I was logged into kenai, and there was no reporter field visible.]
&lt;br&gt;&lt;br&gt;The following database migration fragment:
&lt;br&gt;&amp;nbsp; &amp;nbsp; execute %{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; CREATE VIEW catenated_titles WITH SCHEMABINDING AS
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SELECT id, (title_nonsort_prefix + sort_title) AS catenated_title
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FROM biblio.core_records
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;yields the following error when 'rake db:migrate --trace' is run:
&lt;br&gt;rake aborted!
&lt;br&gt;An error has occurred, all later migrations canceled:
&lt;br&gt;&lt;br&gt;ActiveRecord::ActiveRecordError: The statement did not return a result set.:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; CREATE VIEW catenated_titles AS
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SELECT id, (title_nonsort_prefix + sort_title) AS catenated_title
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FROM biblio.core_records
&lt;br&gt;&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/activerecord-2.3.2/lib/active_record/connection_adapters/abstract_adapter.rb:212:in `log'
&lt;br&gt;I:/work/biblio/trunk/biblio/vendor/gems/activerecord-jdbc-adapter-0.9.2/lib/active_record/connection_adapters/jdbc_adapter.rb:565:in `execute'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/activerecord-2.3.2/lib/active_record/migration.rb:352:in `method_missing'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/activerecord-2.3.2/lib/active_record/migration.rb:328:in `say_with_time'
&lt;br&gt;c:/jruby/lib/ruby/1.8/benchmark.rb:293:in `measure'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/activerecord-2.3.2/lib/active_record/migration.rb:328:in `say_with_time'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/activerecord-2.3.2/lib/active_record/migration.rb:348:in `method_missing'
&lt;br&gt;db/migrate//20091106170821_create_catenated_titles.rb:3:in `up'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/activerecord-2.3.2/lib/active_record/migration.rb:282:in `migrate'
&lt;br&gt;c:/jruby/lib/ruby/1.8/benchmark.rb:293:in `measure'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/activerecord-2.3.2/lib/active_record/migration.rb:282:in `migrate'
&lt;br&gt;(__DELEGATION__):2:in `migrate'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/activerecord-2.3.2/lib/active_record/migration.rb:486:in `migrate'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/activerecord-2.3.2/lib/active_record/migration.rb:562:in `call'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/activerecord-2.3.2/lib/active_record/migration.rb:562:in `ddl_transaction'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/activerecord-2.3.2/lib/active_record/migration.rb:485:in `migrate'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/activerecord-2.3.2/lib/active_record/migration.rb:472:in `each'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/activerecord-2.3.2/lib/active_record/migration.rb:472:in `migrate'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/activerecord-2.3.2/lib/active_record/migration.rb:400:in `up'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/activerecord-2.3.2/lib/active_record/migration.rb:383:in `migrate'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rails-2.3.2/lib/tasks/databases.rake:116
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:636:in `call'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:636:in `execute'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:631:in `each'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:631:in `execute'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:597:in `invoke_with_call_chain'
&lt;br&gt;c:/jruby/lib/ruby/1.8/monitor.rb:191:in `mon_synchronize'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:590:in `invoke_with_call_chain'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:583:in `invoke'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2051:in `invoke_task'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2029:in `top_level'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2029:in `each'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2029:in `top_level'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2068:in `standard_exception_handling'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2023:in `top_level'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2001:in `run'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:2068:in `standard_exception_handling'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake.rb:1998:in `run'
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rake-0.8.7/bin/rake:31
&lt;br&gt;C:/jruby/lib/ruby/gems/1.8/gems/rake-0.8.7/bin/rake:19:in `load'
&lt;br&gt;c:\jruby\bin\rake:19
&lt;br&gt;&lt;br&gt;The problem comes from _execute in lib/jdbc_adapters/jdbc_mssql.rb:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; def _execute(sql, name = nil)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; # [...]
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; elsif sql.lstrip =~ /^\(?\s*(select|show)/i
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; repair_special_columns(sql)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; @connection.execute_query(sql)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; # [...]
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; end
&lt;br&gt;&lt;br&gt;The CREATE VIEW statement above is recognized as a query because the SELECT keyword appears at the beginning of the second line.
&lt;br&gt;&lt;br&gt;I don't know what the right way to do the recognition is. &amp;nbsp;Maybe DDL statements should always be executed using execute_update?
&lt;br&gt;&lt;br&gt;A workaround for the problem is to move AS from the end of the first line to the start of the second.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4221%29-AR-JDBC%3A-CREATE-VIEW-wrongly-executed-as-query%2C-fails-because-doesn%27t-return-result-set-tp26236669p26236669.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26236673</id>
	<title>[jira] Created: (JRUBY-4220) File.dirname(__FILE__) doesn't return correct value when a script is loaded from classpath</title>
	<published>2009-11-06T10:36:55Z</published>
	<updated>2009-11-06T10:36:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">File.dirname(__FILE__) doesn't return correct value when a script is loaded from classpath
&lt;br&gt;------------------------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4220
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4220&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4220&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: Embedding
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.5
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Yoko Harada
&lt;br&gt;&lt;br&gt;&lt;br&gt;When a script is loaded from classpath, File.dirname(__FILE__) returns the base directory. Because of this behavior, test_dir.rb test_file.rb test_io.rb, and test_load_class_before_rb.rb fail. For example, test_io.rb outputs:
&lt;br&gt;{noformat}
&lt;br&gt;[junit] [test_io.rb]
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Loaded suite -
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Started
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] test_io.rb:71 warning: syswrite for buffered IO
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] .........F...................
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Finished in 0.435 seconds.
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] &amp;nbsp; 1) Failure:
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] test_io_reopen(TestIO) [test_io.rb:450]:
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] &amp;lt;&amp;quot;foo&amp;quot;&amp;gt; expected but was
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] &amp;lt;&amp;quot;Error opening script file: /Users/yoko/DevSpace/jruby~main/./quiet.rb (No such file or directory)&amp;quot;&amp;gt;.
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 29 tests, 108 assertions, 1 failures, 0 errors
&lt;br&gt;{noformat}
&lt;br&gt;&lt;br&gt;All of those test scripts work well without errors when those are read from absolute path.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4220%29-File.dirname%28__FILE__%29-doesn%27t-return-correct-value-when-a-script-is-loaded-from-classpath-tp26236673p26236673.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26235629</id>
	<title>Re: Where was fileutils gone?</title>
	<published>2009-11-06T09:27:16Z</published>
	<updated>2009-11-06T09:27:16Z</updated>
	<author>
		<name>Yoko Harada</name>
	</author>
	<content type="html">On Fri, Nov 6, 2009 at 10:25 AM, Hirotsugu Asari &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26235629&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;asari.ruby@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; If you keep up with trunk, often build artifacts get in the way over time.
&lt;br&gt;&amp;gt; Try 'ant clean jar', which I find effective in such a case.
&lt;br&gt;&lt;br&gt;Thank you. You're right. After I did &amp;quot;ant clean,&amp;quot; all tests passed.
&lt;br&gt;&lt;br&gt;-Yoko
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Hiro
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Nov 6, 2009, at 8:31 AM, Yoko Harada &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26235629&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;yokolet@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Today, many embed test failed because of the error:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;   /Users/yoko/DevSpace/jruby~main/lib/ruby/1.8/tmpdir.rb:7:in
&lt;br&gt;&amp;gt;&amp;gt; `require': IO error -- fileutils (LoadError)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; This happned on rev a0decb3. The tests passed successfully on rev
&lt;br&gt;&amp;gt;&amp;gt; 481fa4d, so a change after that causes this error.
&lt;br&gt;&amp;gt;&amp;gt; Where was fileutils gone?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; -Yoko
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;   &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;   &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Where-was-fileutils-gone--tp26232920p26235629.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26233965</id>
	<title>Re: Where was fileutils gone?</title>
	<published>2009-11-06T07:25:05Z</published>
	<updated>2009-11-06T07:25:05Z</updated>
	<author>
		<name>Hirotsugu Asari</name>
	</author>
	<content type="html">If you keep up with trunk, often build artifacts get in the way over &amp;nbsp;
&lt;br&gt;time. Try 'ant clean jar', which I find effective in such a case.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Hiro
&lt;br&gt;&lt;br&gt;On Nov 6, 2009, at 8:31 AM, Yoko Harada &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26233965&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;yokolet@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Today, many embed test failed because of the error:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;/Users/yoko/DevSpace/jruby~main/lib/ruby/1.8/tmpdir.rb:7:in
&lt;br&gt;&amp;gt; `require': IO error -- fileutils (LoadError)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This happned on rev a0decb3. The tests passed successfully on rev
&lt;br&gt;&amp;gt; 481fa4d, so a change after that causes this error.
&lt;br&gt;&amp;gt; Where was fileutils gone?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -Yoko
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list, please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Where-was-fileutils-gone--tp26232920p26233965.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26232920</id>
	<title>Where was fileutils gone?</title>
	<published>2009-11-06T06:31:54Z</published>
	<updated>2009-11-06T06:31:54Z</updated>
	<author>
		<name>Yoko Harada</name>
	</author>
	<content type="html">Today, many embed test failed because of the error:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; /Users/yoko/DevSpace/jruby~main/lib/ruby/1.8/tmpdir.rb:7:in
&lt;br&gt;`require': IO error -- fileutils (LoadError)
&lt;br&gt;&lt;br&gt;This happned on rev a0decb3. The tests passed successfully on rev
&lt;br&gt;481fa4d, so a change after that causes this error.
&lt;br&gt;Where was fileutils gone?
&lt;br&gt;&lt;br&gt;-Yoko
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Where-was-fileutils-gone--tp26232920p26232920.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26230687</id>
	<title>[jira] Created: (JRUBY-4219) Exceptions backtrace info is wrong if call to Kernel#system is on the same line</title>
	<published>2009-11-06T03:46:55Z</published>
	<updated>2009-11-06T03:46:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">Exceptions backtrace info is wrong if call to Kernel#system is on the same line
&lt;br&gt;-------------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4219
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4219&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4219&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: Checked with Linux and Windows
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Vladimir Sizikov
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Thomas E Enebo
&lt;br&gt;&lt;br&gt;&lt;br&gt;Consider the following:
&lt;br&gt;{code system-bt.rb}
&lt;br&gt;# one
&lt;br&gt;# two
&lt;br&gt;# three
&lt;br&gt;system('pwd') and raise StandardError
&lt;br&gt;{code}
&lt;br&gt;&lt;br&gt;MRI will report:
&lt;br&gt;system-bt.rb:*4*: StandardError (StandardError)
&lt;br&gt;&lt;br&gt;JRuby will report always line *1*:
&lt;br&gt;system-bt.rb:*1*: StandardError (StandardError)
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4219%29-Exceptions-backtrace-info-is-wrong-if-call-to-Kernel-system-is-on-the-same-line-tp26230687p26230687.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26224801</id>
	<title>[jira] Created: (JRUBY-4218) jruby loads src/builtin/generator.rb ahead of any other file named generator</title>
	<published>2009-11-05T16:14:55Z</published>
	<updated>2009-11-05T16:14:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">jruby loads src/builtin/generator.rb &amp;nbsp;ahead of any other file named generator
&lt;br&gt;-----------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4218
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4218&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4218&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: Core Classes/Modules
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.5
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: jruby 1.5.0.dev (ruby 1.8.7 patchlevel 174) (2009-11-05 6586) (Java HotSpot(TM) Client VM 1.6.0_14) [i386-java]
&lt;br&gt;&lt;br&gt;On Kubuntu 8.04.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: James Britt
&lt;br&gt;&lt;br&gt;&lt;br&gt;Example; 2 files, in the same directory.
&lt;br&gt;&lt;br&gt;&lt;br&gt;#------- generator.rb -----------
&lt;br&gt;warn &amp;quot;#{__FILE__} is loaded&amp;quot;
&lt;br&gt;&lt;br&gt;class MyGen
&lt;br&gt;&amp;nbsp; def foo
&lt;br&gt;&amp;nbsp; &amp;nbsp; __FILE__
&lt;br&gt;&amp;nbsp; end
&lt;br&gt;end
&lt;br&gt;#--------------------------------------
&lt;br&gt;&lt;br&gt;#--------------- test.rb -------------------
&lt;br&gt;here = File.expand_path(File.dirname(__FILE__))
&lt;br&gt;$:.unshift here
&lt;br&gt;require 'generator.rb'
&lt;br&gt;&lt;br&gt;begin 
&lt;br&gt;&amp;nbsp; p MyGen.new.foo
&lt;br&gt;rescue
&lt;br&gt;&amp;nbsp; warn $!
&lt;br&gt;end
&lt;br&gt;#--------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;Line 2 in test.rb forces the current directory to the head of the load path, so
&lt;br&gt;local files should be found and loaded first.
&lt;br&gt;&lt;br&gt;Execute test.rb using MRI (for example)
&lt;br&gt;&lt;br&gt;$ ruby test.rb
&lt;br&gt;/home/james/tmp/jruby-require-bug/generator.rb is loaded
&lt;br&gt;&amp;quot;/home/james/tmp/jruby-require-bug/generator.rb&amp;quot;
&lt;br&gt;$
&lt;br&gt;&lt;br&gt;Try with jruby:
&lt;br&gt;&lt;br&gt;$ ruby jtest.rb
&lt;br&gt;uninitialized constant MyGen
&lt;br&gt;&lt;br&gt;JRuby is loading sr/builtin/generator.rb despite the values in $:
&lt;br&gt;&lt;br&gt;(You can check this by adding a puts statement to that file to indicate when it gets loaded.)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4218%29-jruby-loads-src-builtin-generator.rb-ahead-of-any-other-file-named-generator-tp26224801p26224801.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26221850</id>
	<title>[jira] Created: (JRUBY-4217) test_kernel.rb is not enabled during the test runs, and fails on test_raise_in_debug_mode</title>
	<published>2009-11-05T12:38:55Z</published>
	<updated>2009-11-05T12:38:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">test_kernel.rb is not enabled during the test runs, and fails on test_raise_in_debug_mode
&lt;br&gt;-----------------------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4217
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4217&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4217&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Vladimir Sizikov
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Vladimir Sizikov
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Fix For: JRuby 1.5
&lt;br&gt;&lt;br&gt;&lt;br&gt;test_kernel.rb, being an important test suite for the critical core class, must be enabled by default for our test runs.
&lt;br&gt;&lt;br&gt;Also, the failure should be fixed. Will do.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4217%29-test_kernel.rb-is-not-enabled-during-the-test-runs%2C-and-fails-on-test_raise_in_debug_mode-tp26221850p26221850.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26210807</id>
	<title>[jira] Created: (JRUBY-4216) Array.select should return an Enumerator when no block is given</title>
	<published>2009-11-05T00:26:55Z</published>
	<updated>2009-11-05T00:26:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">Array.select should return an Enumerator when no block is given
&lt;br&gt;---------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4216
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4216&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4216&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: Core Classes/Modules, Ruby 1.8.7
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: David Calavera
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Fix For: JRuby 1.5
&lt;br&gt;&lt;br&gt;&lt;br&gt;Seems a backport from ruby 1.9.
&lt;br&gt;&lt;br&gt;Sending a patch in a while.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4216%29-Array.select-should-return-an-Enumerator-when-no-block-is-given-tp26210807p26210807.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26210779</id>
	<title>[jira] Created: (JRUBY-4215) YAML: MRI does not load JRuby yaml files correctly (Problem is hash-key that start with zero)</title>
	<published>2009-11-05T00:23:55Z</published>
	<updated>2009-11-05T00:23:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">YAML: MRI does not load JRuby yaml files correctly (Problem is hash-key that start with zero)
&lt;br&gt;---------------------------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4215
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4215&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4215&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: Core Classes/Modules
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: Snow Leopard
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Thies C. Arntzen
&lt;br&gt;&lt;br&gt;&lt;br&gt;in jirb:
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; {&amp;quot;0:1&amp;quot; =&amp;gt; &amp;quot;0:1&amp;quot;, &amp;quot;1:1&amp;quot; =&amp;gt; &amp;quot;1:1&amp;quot;}.to_yaml
&lt;br&gt;=&amp;gt; &amp;quot;--- \n\&amp;quot;1:1\&amp;quot;: \&amp;quot;1:1\&amp;quot;\n0:1: 0:1\n&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt; YAML.load &amp;quot;--- \n\&amp;quot;1:1\&amp;quot;: \&amp;quot;1:1\&amp;quot;\n0:1: 0:1\n&amp;quot;
&lt;br&gt;=&amp;gt; {&amp;quot;0:1&amp;quot;=&amp;gt;&amp;quot;0:1&amp;quot;, &amp;quot;1:1&amp;quot;=&amp;gt;&amp;quot;1:1&amp;quot;}
&lt;br&gt;&lt;br&gt;all is fine - see that the key 0:1 is not qouted in the generated YAML
&lt;br&gt;&lt;br&gt;if I try to load the jruby generated YAML in mri (ree 1.8.7) I don't get the 0:1 key back but instead just a 1:
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; YAML.load &amp;quot;--- \n\&amp;quot;1:1\&amp;quot;: \&amp;quot;1:1\&amp;quot;\n0:1: 0:1\n&amp;quot;
&lt;br&gt;=&amp;gt; {1=&amp;gt;1, &amp;quot;1:1&amp;quot;=&amp;gt;&amp;quot;1:1&amp;quot;}
&lt;br&gt;&lt;br&gt;If I serialize the original hash in mri mri will also quote the 0:1 hash index so it will load the YAML back correctly.
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; {&amp;quot;0:1&amp;quot; =&amp;gt; &amp;quot;0:1&amp;quot;, &amp;quot;1:1&amp;quot; =&amp;gt; &amp;quot;1:1&amp;quot;}.to_yaml
&lt;br&gt;=&amp;gt; &amp;quot;--- \n\&amp;quot;0:1\&amp;quot;: \&amp;quot;0:1\&amp;quot;\n\&amp;quot;1:1\&amp;quot;: \&amp;quot;1:1\&amp;quot;\n&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt; YAML.load &amp;quot;--- \n\&amp;quot;0:1\&amp;quot;: \&amp;quot;0:1\&amp;quot;\n\&amp;quot;1:1\&amp;quot;: \&amp;quot;1:1\&amp;quot;\n&amp;quot;
&lt;br&gt;=&amp;gt; {&amp;quot;0:1&amp;quot;=&amp;gt;&amp;quot;0:1&amp;quot;, &amp;quot;1:1&amp;quot;=&amp;gt;&amp;quot;1:1&amp;quot;}
&lt;br&gt;&lt;br&gt;I'm not sure if this is a bug in the mri ruby implementation or in jruby!
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4215%29-YAML%3A-MRI-does-not-load-JRuby-yaml-files-correctly-%28Problem-is-hash-key-that-start-with-zero%29-tp26210779p26210779.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26197536</id>
	<title>[jira] Created: (JRUBY-4214) module_function fails on some private methods</title>
	<published>2009-11-04T06:45:55Z</published>
	<updated>2009-11-04T06:45:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">module_function fails on some private methods
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4214
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4214&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4214&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Marc-Andre Lafortune
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Thomas E Enebo
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Priority: Minor
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Fix For: JRuby 1.5
&lt;br&gt;&lt;br&gt;&lt;br&gt;I created a failing rubyspec for JRuby:
&lt;br&gt;&lt;br&gt;$ mspec core/module/module_function_spec.rb -t jruby
&lt;br&gt;jruby 1.5.0.dev (ruby 1.8.7 patchlevel 174) (2009-10-28 4c719bc) (Java HotSpot(TM) 64-Bit Server VM 1.6.0_15) [x86_64-java]
&lt;br&gt;.......E........EE
&lt;br&gt;&lt;br&gt;1)
&lt;br&gt;Module#module_function with specific method names can make accessible private methods ERROR
&lt;br&gt;NameError: undefined method 'require' for module '#&amp;lt;Module:01x3a87d472&amp;gt;'
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4214%29-module_function-fails-on-some-private-methods-tp26197536p26197536.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26195939</id>
	<title>[jira] Created: (JRUBY-4213) ruby-debug-ide installation</title>
	<published>2009-11-04T05:03:55Z</published>
	<updated>2009-11-04T05:03:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">ruby-debug-ide installation
&lt;br&gt;---------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4213
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4213&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4213&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: Extensions
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.4.0RC2
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: Windows XP
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Stéphane
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;I'm trying to install the ruby-debug-ide and I get the following error :
&lt;br&gt;********************************************************************
&lt;br&gt;jruby -S gem install --ignore-dependencies ruby-debug-ide
&lt;br&gt;JRuby limited openssl loaded. gem install jruby-openssl for full support.
&lt;br&gt;&lt;a href=&quot;http://jruby.kenai.com/pages/JRuby_Builtin_OpenSSL&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jruby.kenai.com/pages/JRuby_Builtin_OpenSSL&lt;/a&gt;&lt;br&gt;Building native extensions. &amp;nbsp;This could take a while...
&lt;br&gt;rake aborted!
&lt;br&gt;Don't know how to build task '2&amp;gt;&amp;1'
&lt;br&gt;&lt;br&gt;(See full trace by running task with --trace)
&lt;br&gt;ERROR: &amp;nbsp;Error installing ruby-debug-ide:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ERROR: Failed to build gem native extension.
&lt;br&gt;********************************************************************
&lt;br&gt;&lt;br&gt;This was working fine with JRuby 1.3.1
&lt;br&gt;&lt;br&gt;I searched in many forums but did find the solution...
&lt;br&gt;A very approaching issue already exists (JRUBY-2611) but I'm not sure the case is similar.
&lt;br&gt;&lt;br&gt;To be honnest, JRuby without IDE debugger loses a lot of its interest...
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;//Stéphane
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4213%29-ruby-debug-ide-installation-tp26195939p26195939.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26190606</id>
	<title>[jira] Created: (JRUBY-4212) Rails' Gem Rake Tasks Fail to Run</title>
	<published>2009-11-03T19:44:55Z</published>
	<updated>2009-11-03T19:44:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">Rails' Gem Rake Tasks Fail to Run
&lt;br&gt;---------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4212
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4212&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4212&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: * OS X 10.6.1
&lt;br&gt;* java version &amp;quot;1.6.0_15&amp;quot;
&lt;br&gt;* Java(TM) SE Runtime Environment (build 1.6.0_15-b03-219)
&lt;br&gt;* Java HotSpot(TM) 64-Bit Server VM (build 14.1-b02-90, mixed mode)
&lt;br&gt;* JRuby installed via MacPorts
&lt;br&gt;* Rails v2.3.4
&lt;br&gt;* I've installed Gemcutter
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: James Herdman
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Thomas E Enebo
&lt;br&gt;&lt;br&gt;&lt;br&gt;Attempting to run Rails' gem related Rake tasks causes JRuby to hang  or at least cause it to seemingly loop indefinitely. Example: &amp;quot;jrake gem:refresh_specs&amp;quot;.
&lt;br&gt;&lt;br&gt;If I check the Activity Monitor for OS X, I can see that JRuby is consuming upwards of 80% CPU. I've let the task run for an hour and nothing happens.
&lt;br&gt;&lt;br&gt;I'll post more details as I uncover them.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4212%29-Rails%27-Gem-Rake-Tasks-Fail-to-Run-tp26190606p26190606.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26190167</id>
	<title>[jira] Created: (JRUBY-4211) Segfault when accessing Etc functions</title>
	<published>2009-11-03T18:33:55Z</published>
	<updated>2009-11-03T18:33:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">Segfault when accessing Etc functions
&lt;br&gt;-------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4211
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4211&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4211&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.5
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Nick Sieger
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Thomas E Enebo
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Priority: Critical
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Fix For: JRuby 1.5
&lt;br&gt;&lt;br&gt;&lt;br&gt;Looks like a jnr-posix issue?
&lt;br&gt;&lt;br&gt;{noformat}
&lt;br&gt;$ ~/Projects/jruby/1.4.0/bin/jruby -v -retc -e 'p Etc.getlogin'
&lt;br&gt;jruby 1.4.0 (ruby 1.8.7 patchlevel 174) (2009-11-02 69fbfa3) (Java HotSpot(TM) 64-Bit Server VM 1.6.0_15) [x86_64-java]
&lt;br&gt;&amp;quot;nicksieger&amp;quot;
&lt;br&gt;$ jruby -v -retc -e 'p Etc.getlogin'
&lt;br&gt;jruby 1.5.0.dev (ruby 1.8.7 patchlevel 174) (2009-11-03 a13d423) (Java HotSpot(TM) 64-Bit Server VM 1.6.0_15) [x86_64-java]
&lt;br&gt;Invalid memory access of location 0x7054d000 rip=0x7fff826b58d0
&lt;br&gt;&lt;br&gt;Segmentation fault
&lt;br&gt;{noformat}
&lt;br&gt;&lt;br&gt;FYI, this error is also reproduced in the ruby_test test suite, run as part of the test-compiled and test-interpreted ant targets:
&lt;br&gt;&lt;br&gt;{noformat}
&lt;br&gt;$ jruby -v -Itest/externals/ruby_test/lib test/externals/ruby_test/test/core/File/class/tc_grpowned.rb 
&lt;br&gt;jruby 1.5.0.dev (ruby 1.8.7 patchlevel 174) (2009-11-03 a13d423) (Java HotSpot(TM) 64-Bit Server VM 1.6.0_15) [x86_64-java]
&lt;br&gt;Loaded suite test/externals/ruby_test/test/core/File/class/tc_grpowned
&lt;br&gt;Started
&lt;br&gt;Invalid memory access of location 0x7054d000 rip=0x7fff826b58d0
&lt;br&gt;&lt;br&gt;Segmentation fault
&lt;br&gt;{noformat}
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4211%29-Segfault-when-accessing-Etc-functions-tp26190167p26190167.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26182873</id>
	<title>[jira] Created: (JRUBY-4210) Usage of OpenSSL on AIX fails</title>
	<published>2009-11-03T08:59:55Z</published>
	<updated>2009-11-03T08:59:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">Usage of OpenSSL on AIX fails
&lt;br&gt;-----------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4210
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4210&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4210&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: OpenSSL
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby-OpenSSL 0.5.1
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: AIX 3.5
&lt;br&gt;IBM J9 VM (build 2.4, J2RE 1.6.0 IBM J9 2.4 AIX ppc-32 jvmap3260sr4ifx-20090409_33254 (JIT enabled, AOT enabled)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Michael Fellinger
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Priority: Critical
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Fix For: JRuby-OpenSSL 0.5.2
&lt;br&gt;&lt;br&gt;&lt;br&gt;Tried using HTTPClient, which is needed for SOAP4r to use HTTPS.
&lt;br&gt;Got following backtrace ( paste also at &lt;a href=&quot;http://pastie.org/private/n8zga6awmj4fn4uw14irpa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pastie.org/private/n8zga6awmj4fn4uw14irpa&lt;/a&gt;&amp;nbsp;)
&lt;br&gt;&lt;br&gt;jruby -e 'require &amp;quot;rubygems&amp;quot;; require &amp;quot;httpclient&amp;quot;; HTTPClient.new'
&lt;br&gt;EVP.java:101:in `type': java.lang.NullPointerException
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from PKCS7.java:254:in `signatureVerify'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from PKCS7.java:390:in `verify'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from PKCS7.java:486:in `verify'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from org/jruby/ext/openssl/PKCS7$i_method_0_0$RUBYINVOKER$verify.gen:-1:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CachingCallSite.java:280:in `cacheAndCall'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CachingCallSite.java:69:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CallManyArgsNode.java:59:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from NewlineNode.java:104:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from IfNode.java:111:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from NewlineNode.java:104:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from BlockNode.java:71:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from IfNode.java:117:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from NewlineNode.java:104:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from BlockNode.java:71:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from InterpretedBlock.java:317:in `evalBlockBody'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from InterpretedBlock.java:268:in `yield'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from Block.java:194:in `yield'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from RubyArray.java:1635:in `eachCommon'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from RubyArray.java:1642:in `each'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from org/jruby/RubyArray$i_method_0_0$RUBYFRAMEDINVOKER$each.gen:-1:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CachingCallSite.java:300:in `cacheAndCall'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CachingCallSite.java:118:in `callBlock'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CachingCallSite.java:123:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CallNoArgBlockNode.java:64:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from NewlineNode.java:104:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from BlockNode.java:71:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from InterpretedMethod.java:136:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from DefaultMethod.java:153:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CachingCallSite.java:290:in `cacheAndCall'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CachingCallSite.java:109:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from VCallNode.java:85:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from NewlineNode.java:104:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from BlockNode.java:71:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from InterpretedMethod.java:192:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from DefaultMethod.java:177:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CachingCallSite.java:320:in `cacheAndCall'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CachingCallSite.java:158:in `callBlock'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CachingCallSite.java:163:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from RubyClass.java:709:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from DynamicMethod.java:176:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CachingCallSite.java:310:in `cacheAndCall'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CachingCallSite.java:149:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CallOneArgNode.java:57:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from InstAsgnNode.java:95:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from AttrAssignOneArgNode.java:33:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from NewlineNode.java:104:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from BlockNode.java:71:in `interpret'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from InterpretedMethod.java:155:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from DefaultMethod.java:161:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CachingCallSite.java:300:in `cacheAndCall'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CachingCallSite.java:118:in `callBlock'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CachingCallSite.java:123:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from RubyClass.java:698:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from DynamicMethod.java:168:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CachingCallSite.java:290:in `cacheAndCall'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from CachingCallSite.java:109:in `call'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from -e:1:in `__file__'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from -e:-1:in `load' &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from Ruby.java:628:in `runScript'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from Ruby.java:550:in `runNormally'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from Ruby.java:396:in `runFromMain'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from Main.java:272:in `run'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from Main.java:117:in `run'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from Main.java:97:in `main'
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4210%29-Usage-of-OpenSSL-on-AIX-fails-tp26182873p26182873.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26181579</id>
	<title>[jira] Created: (JRUBY-4209) [windows] DB2 JDBC Adapters not loading (CLASSPATH issue)</title>
	<published>2009-11-03T07:40:55Z</published>
	<updated>2009-11-03T07:40:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">[windows] DB2 JDBC Adapters not loading (CLASSPATH issue)
&lt;br&gt;---------------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4209
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4209&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4209&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: Java Integration
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: Windows XP, Java 1.6_0.15-b03 (JRE), DB2 JDBC Adapter in 3 JAR files
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Jens-Christian Fischer
&lt;br&gt;&lt;br&gt;&lt;br&gt;The DB2 JDBC adapter is distributed in 3 JAR files. We had them in jruby\lib and they got added to the CLASSPATH by Jruby automatically. This changed between 1.4.0RC1 and RC2 - now only jruby.jar is loaded.
&lt;br&gt;&lt;br&gt;We have since added the 3 JAR files to the CLASSPATH environment var, and all is fine (for example when running on the production system, a zLinux).
&lt;br&gt;&lt;br&gt;However under Windows the JARs are not picked up, and we get an initialisation error.
&lt;br&gt;&lt;br&gt;CLASSPATH is set correctly, and a JRuby program sees it (doing a &amp;quot;puts ENV['CLASSPATH']&amp;quot; shows the correct path.
&lt;br&gt;&lt;br&gt;Our IDE (RubyMine) also picks up the CP and passes it correctly to the Java (it doesn't use jruby.exe but calls java directly) like in the following call:
&lt;br&gt;&lt;br&gt;&amp;quot;c:\programme\jetbrains\rubymine 2.0 beta 3\jre\jre\bin\java.exe&amp;quot; -Xverify:none -da -Xmx500m -Xss1024k -cp C:\Programme\jruby-1.4\lib\db2jcc.jar;C:\Programme\jruby-1.4\lib\db2jcc_license_cisuz.jar;C:\Programme\jruby-1.4\lib\db2jcc_license_cu.jar;C:\Programme\jruby-1.4\lib\jruby.jar;C:\Programme\jruby-1.4\lib\profile.jar -Djruby.base=C:\Programme\jruby-1.4 -Djruby.home=C:\Programme\jruby-1.4 -Djruby.lib=C:\Programme\jruby-1.4\lib -Djruby.shell=&amp;quot;cmd.exe&amp;quot; -Djruby.script=jruby.bat org.jruby.Main -e STDOUT.sync=true;STDERR.sync=true;load($0=ARGV.shift) &amp;quot;C:\Programme\JetBrains\RubyMine 2.0 Beta 3\rb\testing\runner\specs_in_folder_runner.rb&amp;quot;
&lt;br&gt;&lt;br&gt;As soon as JRuby is called (for example the above line collects the spec files and passes them to a new JRuby instance), it fails:
&lt;br&gt;&lt;br&gt;RSpec script : C:/cygwin/home/H7DAECW/work/realos/script/spec
&lt;br&gt;Ruby Options:
&lt;br&gt;[&amp;quot;-e&amp;quot;, &amp;quot;STDOUT.sync=true;STDERR.sync=true;load($0=ARGV.shift)&amp;quot;]
&lt;br&gt;Spec Options:
&lt;br&gt;[]
&lt;br&gt;=========================================
&lt;br&gt;Running specs...
&lt;br&gt;Ruby interpreter arguments: 
&lt;br&gt;[&amp;quot;-e&amp;quot;, &amp;quot;STDOUT.sync=true;STDERR.sync=true;load($0=ARGV.shift)&amp;quot;, &amp;quot;C:/cygwin/home/xxxxx/work/realos/script/spec&amp;quot;, &amp;quot;--require&amp;quot;, &amp;quot;teamcity/spec/runner/formatter/teamcity/formatter&amp;quot;, &amp;quot;--format&amp;quot;, &amp;quot;Spec::Runner::Formatter::TeamcityFormatter:matrix&amp;quot;, &amp;quot;C:/cygwin/home/xxxxx/work/realos/spec/controllers/application_controller_spec.rb&amp;quot;, 
&lt;br&gt;[...snip....]
&lt;br&gt;/_documents_overview.html.haml_spec.rb
&lt;br&gt;JRuby limited openssl loaded. gem install jruby-openssl for full support.
&lt;br&gt;&lt;a href=&quot;http://jruby.kenai.com/pages/JRuby_Builtin_OpenSSL&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jruby.kenai.com/pages/JRuby_Builtin_OpenSSL&lt;/a&gt;&lt;br&gt;C:/cygwin/home/xxxxx/work/realos/vendor/gems/activerecord-jdbc-adapter-0.9.2/lib/active_record/connection_adapters/jdbc_adapter.rb:331:in `initialize': The driver encountered an error: cannot initialize Java class com.ibm.db2.jcc.DB2Driver (RuntimeError)
&lt;br&gt;&lt;br&gt;and the stacktrace.
&lt;br&gt;&lt;br&gt;The same error happens when we run any tasks from the commandline (&amp;quot;rake spec&amp;quot;, &amp;quot;script/server&amp;quot;, ....) 
&lt;br&gt;&lt;br&gt;Running them from inside the IDE (and when no second JRuby instance is started) works (so we know that the JARs are loaded and initialized correctly)
&lt;br&gt;&lt;br&gt;The only solution I see for now is to revert the patch that only adds jruby.jar to the Classpath.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4209%29--windows--DB2-JDBC-Adapters-not-loading-%28CLASSPATH-issue%29-tp26181579p26181579.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26180713</id>
	<title>[jira] Created: (JRUBY-4208) jruby  doesn't recognize -F&quot;@ &quot; option</title>
	<published>2009-11-03T06:46:55Z</published>
	<updated>2009-11-03T06:46:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">jruby &amp;nbsp;doesn't recognize -F&amp;quot;@ &amp;quot; option
&lt;br&gt;--------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4208
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4208&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4208&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: Both, Linux and Windows, JRuby 1.4+.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Vladimir Sizikov
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Thomas E Enebo
&lt;br&gt;&lt;br&gt;&lt;br&gt;MRI:
&lt;br&gt;{noformat}
&lt;br&gt;#&amp;gt;echo 5 @ 10 | ruby -nva -F&amp;quot;@ &amp;quot; -e 'p $F'
&lt;br&gt;ruby 1.8.6 (2007-09-24 patchlevel 111) [i486-linux]
&lt;br&gt;[&amp;quot;5 &amp;quot;, &amp;quot;10\n&amp;quot;]
&lt;br&gt;{noformat}
&lt;br&gt;&lt;br&gt;JRuby:
&lt;br&gt;{noformat}
&lt;br&gt;#&amp;gt;echo 5 @ 10 | jruby -nva -F&amp;quot;@ &amp;quot; -e 'p $F'
&lt;br&gt;jruby: unknown option -F@
&lt;br&gt;{noformat}
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4208%29-jruby--doesn%27t-recognize--F%22%40-%22-option-tp26180713p26180713.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26178585</id>
	<title>[jira] Created: (JRUBY-4207) Slow script performance using jruby in ant</title>
	<published>2009-11-03T03:56:55Z</published>
	<updated>2009-11-03T03:56:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">Slow script performance using jruby in ant
&lt;br&gt;------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4207
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4207&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4207&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: Miscellaneous
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: Win XP 32bit, jdk 1.6.0_14, Ant 1.7.1
&lt;br&gt;AIX 5 32bit, J2RE 1.6.0 IBM J9 2.4 AIX, Ant 1.7.1
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Gilbert Rebhan
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;when using jruby in ant via &amp;lt;script&amp;gt; task the performance is significant slower
&lt;br&gt;compared to other languages running with BSF, f.e. beanshell or rhino
&lt;br&gt;&lt;br&gt;Using jruby.jar or jruby-complete.jar is equal and also older versions of jruby
&lt;br&gt;(1.2.0, 1.3.0, 1.4.0RC1 ..) show similar behaviour.
&lt;br&gt;Problem seems to be the loading/initialization, as problem occurs already with
&lt;br&gt;empty &amp;lt;script&amp;gt; targets
&lt;br&gt;&lt;br&gt;Example build.xml with empty &amp;lt;script&amp;gt; tasks =
&lt;br&gt;&lt;br&gt;&amp;lt;project name=&amp;quot;JrubyInAntBenchmark&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;typedef resource=&amp;quot;net/sf/antcontrib/antlib.xml&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;stopwatch name=&amp;quot;bsh&amp;quot; action=&amp;quot;start&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;script language=&amp;quot;beanshell&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;stopwatch name=&amp;quot;bsh&amp;quot; action=&amp;quot;total&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;stopwatch name=&amp;quot;rhino&amp;quot; action=&amp;quot;start&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;script language=&amp;quot;javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;stopwatch name=&amp;quot;rhino&amp;quot; action=&amp;quot;total&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;stopwatch name=&amp;quot;jruby&amp;quot; action=&amp;quot;start&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;script language=&amp;quot;ruby&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;stopwatch name=&amp;quot;jruby&amp;quot; action=&amp;quot;total&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;/project&amp;gt;
&lt;br&gt;&lt;br&gt;on WinXP with jruby-complete-1.4.0.jar =
&lt;br&gt;[stopwatch] [bsh: 0.062 sec]
&lt;br&gt;[stopwatch] [rhino: 0.094 sec]
&lt;br&gt;[stopwatch] [jruby: 1.656 sec]
&lt;br&gt;&lt;br&gt;on WinXP with jruby.jar =
&lt;br&gt;[stopwatch] [bsh: 0.047 sec]
&lt;br&gt;[stopwatch] [rhino: 0.109 sec]
&lt;br&gt;[stopwatch] [jruby: 1.531 sec]
&lt;br&gt;&lt;br&gt;on AIX with jruby-complete-1.4.0.jar=
&lt;br&gt;[stopwatch] [bsh: 0.104 sec]
&lt;br&gt;[stopwatch] [rhino: 0.141 sec]
&lt;br&gt;[stopwatch] [jruby: 2.394 sec]
&lt;br&gt;&lt;br&gt;&lt;br&gt;Regards, Gilbert
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4207%29-Slow-script-performance-using-jruby-in-ant-tp26178585p26178585.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26178354</id>
	<title>[jira] Created: (JRUBY-4206) Array should provide its own map method</title>
	<published>2009-11-03T03:31:55Z</published>
	<updated>2009-11-03T03:31:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">Array should provide its own map method
&lt;br&gt;---------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4206
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4206&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4206&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: Core Classes/Modules
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Vladimir Sizikov
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Vladimir Sizikov
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Fix For: JRuby 1.5
&lt;br&gt;&lt;br&gt;&lt;br&gt;Currently, RubyArray uses the map implementation from RubyEnumerable, which causes some incompatibility with MRI.
&lt;br&gt;&lt;br&gt;Take a look:
&lt;br&gt;&lt;br&gt;{code}
&lt;br&gt;require 'sane' # this gem customizes map behavior for both Enumarable and Array
&lt;br&gt;p [5].collect{ |x| x+1 }
&lt;br&gt;{code}
&lt;br&gt;&lt;br&gt;In MRI it will correctly print [6], bun in JRuby we'll get StackOverflowError!
&lt;br&gt;&lt;br&gt;The reason for error: since there is no Array.map, redefining map() in Array/Enumerable leads to this infinite loop.
&lt;br&gt;&lt;br&gt;Will fix.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4206%29-Array-should-provide-its-own-map-method-tp26178354p26178354.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26173983</id>
	<title>[jira] Created: (JRUBY-4205) stack error</title>
	<published>2009-11-02T18:13:55Z</published>
	<updated>2009-11-02T18:13:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">stack error
&lt;br&gt;-----------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4205
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4205&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4205&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: linux
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Roger Pack
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Thomas E Enebo
&lt;br&gt;&lt;br&gt;&lt;br&gt;$ jgem install sane
&lt;br&gt;$ jgem install whichr
&lt;br&gt;$ whichr jgem
&lt;br&gt;&lt;br&gt;/home/rdp/installs/jruby-1.4.0RC3/lib/ruby/gems/1.8/gems/whichr-0.1.9/lib/whichr.rb:38:in
&lt;br&gt;`which': stack level too deep (SystemStackError)
&lt;br&gt;&lt;br&gt;I don't seem to get this with MRI...perhaps my problem?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4205%29-stack-error-tp26173983p26173983.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26172836</id>
	<title>[ANN] JRuby 1.4.0 Released</title>
	<published>2009-11-02T15:55:21Z</published>
	<updated>2009-11-02T15:55:21Z</updated>
	<author>
		<name>Thomas E Enebo</name>
	</author>
	<content type="html">The JRuby community is pleased to announce the release of JRuby 1.4.0
&lt;br&gt;&lt;br&gt;Homepage: &lt;a href=&quot;http://www.jruby.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.jruby.org/&lt;/a&gt;&lt;br&gt;Download: &lt;a href=&quot;http://www.jruby.org/download&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.jruby.org/download&lt;/a&gt;&lt;br&gt;&lt;br&gt;After three very helpful release candidates we have a final 1.4.0 release.
&lt;br&gt;This release ends a long release cycle in which we resolved a huge number of
&lt;br&gt;issues. The headline feature is a move to Ruby 1.8.7 support, in line with
&lt;br&gt;Rails' own plans to make 1.8.7 the required minimum version of Ruby.
&lt;br&gt;&lt;br&gt;&amp;nbsp; We have also gotten more serious about out 1.9 support (--1.9). &amp;nbsp;The
&lt;br&gt;bigger applications mostly just work at this point, but we still have a
&lt;br&gt;ways to go on 1.9 support. &amp;nbsp;Please try your 1.9 code in JRuby and help us
&lt;br&gt;firm things up.
&lt;br&gt;&lt;br&gt;1.4.0 Highlights:
&lt;br&gt;- JRuby is now compatible with 1.8.7 patchlevel 174
&lt;br&gt;- Windows Native Launcher
&lt;br&gt;&amp;nbsp; - Solves many reported bugs with our old .bat scripts
&lt;br&gt;- New YAML parser Yecht (bug-for-bug compatible with Syck!)
&lt;br&gt;- Improved Java Integration Support
&lt;br&gt;&amp;nbsp; &amp;nbsp; - faster
&lt;br&gt;&amp;nbsp; &amp;nbsp; - new java_method, java_send, and java_alias methods
&lt;br&gt;- Windows installer
&lt;br&gt;- New embedding framework
&lt;br&gt;&amp;nbsp; &amp;nbsp; - Java 6 scripting out of the box
&lt;br&gt;&amp;nbsp; &amp;nbsp; - New org.jruby.embed package to supersede JavaEmbedUtils
&lt;br&gt;- Many 1.9 mode (--1.9) fixes
&lt;br&gt;&amp;nbsp; &amp;nbsp; - updated stdlib to 1.9.2preview2
&lt;br&gt;&amp;nbsp; &amp;nbsp; - Rubygems now working
&lt;br&gt;&amp;nbsp; &amp;nbsp; - Rails 2.3.3 simple apps working (2.3.4 has 1.9 bug)
&lt;br&gt;- rubygems 1.3.5
&lt;br&gt;- Much better error reporting
&lt;br&gt;&amp;nbsp; &amp;nbsp; - shorter backtraces with less Java
&lt;br&gt;&amp;nbsp; &amp;nbsp; - Ruby-compatiable syntax error reporting
&lt;br&gt;- 307 bugs fixed since 1.3.1
&lt;br&gt;&lt;br&gt;We want to thank all the users who have been helping us to get a better
&lt;br&gt;release out. &amp;nbsp;Special thanks to Hiro Asari, David Calavera, and
&lt;br&gt;Roger Pack for their recent activity in the project. &amp;nbsp;We also want to
&lt;br&gt;welcome Yoko Harada as a committer to the project. &amp;nbsp;Her work and
&lt;br&gt;support of our embedding efforts has been great.
&lt;br&gt;&lt;br&gt;Key &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Summary
&lt;br&gt;JRUBY-382 &amp;nbsp; &amp;nbsp; Better error output from parser
&lt;br&gt;JRUBY-558 &amp;nbsp; &amp;nbsp; Integration method matching needs more help with nulls
&lt;br&gt;JRUBY-937 &amp;nbsp; &amp;nbsp; JRuby does not honor RUBY_OPTS or RUBYOPT
&lt;br&gt;JRUBY-1316 &amp;nbsp; &amp;nbsp; Command line doesn't recognize KEY=value construct on WIndows
&lt;br&gt;JRUBY-2232 &amp;nbsp; &amp;nbsp; UNIXSocket doesn't work on Solaris
&lt;br&gt;JRUBY-2324 &amp;nbsp; &amp;nbsp; AST Node positions and content incorrect when passing
&lt;br&gt;down Multibyte content to lexer
&lt;br&gt;JRUBY-2349 &amp;nbsp; &amp;nbsp; Bug in constant lookup on non Module or Class
&lt;br&gt;JRUBY-2398 &amp;nbsp; &amp;nbsp; We should strive to implement the 1.8.7 improvements
&lt;br&gt;JRUBY-2419 &amp;nbsp; &amp;nbsp; Argument application within block is not parsed
&lt;br&gt;correctly (for Range literals)
&lt;br&gt;JRUBY-2525 &amp;nbsp; &amp;nbsp; Dir.glob ordering inconsistent with Matzruby
&lt;br&gt;JRUBY-2587 &amp;nbsp; &amp;nbsp; [1.8.7] Hash.[] should call to_ary if only one argument
&lt;br&gt;is provided
&lt;br&gt;JRUBY-2604 &amp;nbsp; &amp;nbsp; [1.8.7] Implement Binding#eval method
&lt;br&gt;JRUBY-2626 &amp;nbsp; &amp;nbsp; Many rubyspec failures for SortedSet
&lt;br&gt;JRUBY-2654 &amp;nbsp; &amp;nbsp; File pty.rb is not part of the JRuby distro, but is
&lt;br&gt;part of the Ruby standard lib
&lt;br&gt;JRUBY-2666 &amp;nbsp; &amp;nbsp; Issues with Socket#getaddrinfo
&lt;br&gt;JRUBY-2694 &amp;nbsp; &amp;nbsp; [1.8.7] Ability to specify suffix/extension for Tempfile
&lt;br&gt;JRUBY-2839 &amp;nbsp; &amp;nbsp; Eight new BigDecimal RubySpec failures
&lt;br&gt;JRUBY-2866 &amp;nbsp; &amp;nbsp; Set .include? method behavior differs between JRuby
&lt;br&gt;1.1.3 and Ruby 1.8.7
&lt;br&gt;JRUBY-2895 &amp;nbsp; &amp;nbsp; Wildcard arguments not properly expanded on Windows
&lt;br&gt;JRUBY-3024 &amp;nbsp; &amp;nbsp; Better handling if suppressAccessChecks is not permitted
&lt;br&gt;JRUBY-3030 &amp;nbsp; &amp;nbsp; jruby/test/rubicon/test_object_space.rb fails on Windows XP SP 2
&lt;br&gt;JRUBY-3081 &amp;nbsp; &amp;nbsp; CLASSPATH append problem in bin/jruby script under cygwin
&lt;br&gt;JRUBY-3123 &amp;nbsp; &amp;nbsp; Java primate arrays no longer respond to 'first'
&lt;br&gt;(Array) from ruby
&lt;br&gt;JRUBY-3150 &amp;nbsp; &amp;nbsp; Execution variable $: does not include on the taint
&lt;br&gt;check level &amp;gt; 1
&lt;br&gt;JRUBY-3154 &amp;nbsp; &amp;nbsp; Net::HTTP.read_timeout is ignored, timeout is intinite
&lt;br&gt;instead (leading to massive accumulation of sockets and reading
&lt;br&gt;threads)
&lt;br&gt;JRUBY-3159 &amp;nbsp; &amp;nbsp; -e option does not work with iterator blocks
&lt;br&gt;JRUBY-3165 &amp;nbsp; &amp;nbsp; Add stream/reader based methods to
&lt;br&gt;JavaEmbedUtils.RuntimeAdapter as convenience methods
&lt;br&gt;JRUBY-3215 &amp;nbsp; &amp;nbsp; BSF does not retain local scope between eval calls
&lt;br&gt;JRUBY-3240 &amp;nbsp; &amp;nbsp; YAML: active_support dump of BigDecimal differs from MRI
&lt;br&gt;JRUBY-3245 &amp;nbsp; &amp;nbsp; Java exceptions not caught when converting java objects
&lt;br&gt;to ruby objects
&lt;br&gt;JRUBY-3263 &amp;nbsp; &amp;nbsp; imcompatibility with Ruby-1.8.6 in YAML parsing
&lt;br&gt;JRUBY-3266 &amp;nbsp; &amp;nbsp; undefined method 'add_ruby_type' for YAML:Module
&lt;br&gt;JRUBY-3297 &amp;nbsp; &amp;nbsp; Array.new with (size, object=nil) returns the value
&lt;br&gt;passed to break
&lt;br&gt;JRUBY-3306 &amp;nbsp; &amp;nbsp; --1.9 mode doesn't know define_singleton_method
&lt;br&gt;JRUBY-3319 &amp;nbsp; &amp;nbsp; Date spec failures
&lt;br&gt;JRUBY-3321 &amp;nbsp; &amp;nbsp; matrix rubyspec failures
&lt;br&gt;JRUBY-3323 &amp;nbsp; &amp;nbsp; rational rubyspec failures
&lt;br&gt;JRUBY-3327 &amp;nbsp; &amp;nbsp; Possible YAML parsing error
&lt;br&gt;JRUBY-3346 &amp;nbsp; &amp;nbsp; Need pointers of Ruby blocks (JRuby FFI)
&lt;br&gt;JRUBY-3350 &amp;nbsp; &amp;nbsp; JRuby .bat scripts do not correctly find Java without
&lt;br&gt;JAVA_HOME env var
&lt;br&gt;JRUBY-3352 &amp;nbsp; &amp;nbsp; JNA-based FFI fails to load for specs on Windows
&lt;br&gt;JRUBY-3368 &amp;nbsp; &amp;nbsp; java.util.List[range] is broken
&lt;br&gt;JRUBY-3380 &amp;nbsp; &amp;nbsp; New 1.9 Enumerator methods
&lt;br&gt;JRUBY-3389 &amp;nbsp; &amp;nbsp; RubySpec: Hash#update raises a TypeError if called on a
&lt;br&gt;non-empty, frozen instance
&lt;br&gt;JRUBY-3412 &amp;nbsp; &amp;nbsp; YAML.dump loses the timezone when dumping Time instances
&lt;br&gt;JRUBY-3419 &amp;nbsp; &amp;nbsp; JRuby Fails (MRI 1.8.6 works) in Sinatra &amp;quot;helpers&amp;quot; when
&lt;br&gt;no arguments
&lt;br&gt;JRUBY-3433 &amp;nbsp; &amp;nbsp; Encoding.default_internal and Encoding.default_external missing
&lt;br&gt;JRUBY-3435 &amp;nbsp; &amp;nbsp; Enumerable missing fiber-related next, rewind, with_index methods
&lt;br&gt;JRUBY-3442 &amp;nbsp; &amp;nbsp; 1.9 allows trailing commas in method invocations
&lt;br&gt;JRUBY-3453 &amp;nbsp; &amp;nbsp; Make import not complain if Java already has already
&lt;br&gt;imported the specific Java class
&lt;br&gt;JRUBY-3473 &amp;nbsp; &amp;nbsp; RubySpec: OpenStruct frozen failures
&lt;br&gt;JRUBY-3478 &amp;nbsp; &amp;nbsp; Dir.new does not work for directories inside jar file
&lt;br&gt;JRUBY-3499 &amp;nbsp; &amp;nbsp; File.expand_path (from inside a jar) uses %20 instead
&lt;br&gt;of space characters
&lt;br&gt;JRUBY-3505 &amp;nbsp; &amp;nbsp; Can't install hpricot (0.7) gem
&lt;br&gt;JRUBY-3518 &amp;nbsp; &amp;nbsp; yaml_initialize not called for subclasses of standard types
&lt;br&gt;JRUBY-3524 &amp;nbsp; &amp;nbsp; Erroneously redirecting stdout when running jgem
&lt;br&gt;JRUBY-3545 &amp;nbsp; &amp;nbsp; ArrayIndexOutOfBoundsException when opening
&lt;br&gt;Bio::FlatFiles (bioruby gem)
&lt;br&gt;JRUBY-3546 &amp;nbsp; &amp;nbsp; ~/.hoerc results in parsing error
&lt;br&gt;JRUBY-3550 &amp;nbsp; &amp;nbsp; strftime breaks unicode characters in format string
&lt;br&gt;JRUBY-3558 &amp;nbsp; &amp;nbsp; RubySpec: Defining instance methods on an eigenclass
&lt;br&gt;define public methods
&lt;br&gt;JRUBY-3559 &amp;nbsp; &amp;nbsp; the integratated joda time version should be in a
&lt;br&gt;distinct package hierarchy
&lt;br&gt;JRUBY-3567 &amp;nbsp; &amp;nbsp; RubySpec: The __FILE__ constant equals a relative path
&lt;br&gt;when required using a relative path
&lt;br&gt;JRUBY-3575 &amp;nbsp; &amp;nbsp; File permission errors installing gems in 1.9 mode
&lt;br&gt;JRUBY-3576 &amp;nbsp; &amp;nbsp; utf-8 string becomes macroman on os x
&lt;br&gt;JRUBY-3577 &amp;nbsp; &amp;nbsp; File and FileTest methods should use to_path to coerce
&lt;br&gt;non-string parameters
&lt;br&gt;JRUBY-3591 &amp;nbsp; &amp;nbsp; Hexadecimal constants do not have the same equal?
&lt;br&gt;behaviour between JRuby and CRuby
&lt;br&gt;JRUBY-3592 &amp;nbsp; &amp;nbsp; Regression test failure (test_grpowned)
&lt;br&gt;JRUBY-3605 &amp;nbsp; &amp;nbsp; [1.9] IO.initialize missing option hash parsing
&lt;br&gt;JRUBY-3606 &amp;nbsp; &amp;nbsp; [1.9] IO.set_encoding is stubbed out
&lt;br&gt;JRUBY-3607 &amp;nbsp; &amp;nbsp; [1.9] IO.external_encoding stubbed out
&lt;br&gt;JRUBY-3611 &amp;nbsp; &amp;nbsp; RubySpec: &amp;quot;StringIO#sysread when passed no arguments&amp;quot; failures
&lt;br&gt;JRUBY-3612 &amp;nbsp; &amp;nbsp; RubySpec: Array#to_s returns '[...]' for the embedded
&lt;br&gt;array in a recursive array
&lt;br&gt;JRUBY-3627 &amp;nbsp; &amp;nbsp; Parsing related methods and class/interdace should have
&lt;br&gt;ManyVarsDynamicScope to share local variables
&lt;br&gt;JRUBY-3653 &amp;nbsp; &amp;nbsp; RubySpec: Hash failures &amp;quot;computes equality for complex
&lt;br&gt;recursive hashes&amp;quot;
&lt;br&gt;JRUBY-3654 &amp;nbsp; &amp;nbsp; RubySpec: Array failures relating to recursive arrays
&lt;br&gt;JRUBY-3662 &amp;nbsp; &amp;nbsp; JavaEmbedUtils should have methods to set/reset Standard I/O
&lt;br&gt;JRUBY-3682 &amp;nbsp; &amp;nbsp; Hashcodes for Hash objects break compatability with MRI
&lt;br&gt;JRUBY-3687 &amp;nbsp; &amp;nbsp; Bundle JSR 223 support in JRuby
&lt;br&gt;JRUBY-3688 &amp;nbsp; &amp;nbsp; IO.read fails to read files in /proc filesystem on Linux
&lt;br&gt;JRUBY-3700 &amp;nbsp; &amp;nbsp; test/externals/ruby1.8/yaml/test_yaml failures
&lt;br&gt;JRUBY-3702 &amp;nbsp; &amp;nbsp; The method methods
&lt;br&gt;JRUBY-3703 &amp;nbsp; &amp;nbsp; TestCommandLineSwitches fails on Windows
&lt;br&gt;JRUBY-3705 &amp;nbsp; &amp;nbsp; Rubyspec: behavior of $: under safe &amp;gt; 1
&lt;br&gt;JRUBY-3706 &amp;nbsp; &amp;nbsp; Rubyspec: method arity behavior
&lt;br&gt;JRUBY-3707 &amp;nbsp; &amp;nbsp; Rubyspec: Process egid behavior
&lt;br&gt;JRUBY-3713 &amp;nbsp; &amp;nbsp; TwoVarDynamicScope only supports scopes with two variable
&lt;br&gt;JRUBY-3718 &amp;nbsp; &amp;nbsp; FFI: put_pointer and put_array_of_pointer fails to send
&lt;br&gt;:to_ptr to their argument
&lt;br&gt;JRUBY-3721 &amp;nbsp; &amp;nbsp; sub-optimal IO#read after IO#getc
&lt;br&gt;JRUBY-3722 &amp;nbsp; &amp;nbsp; block parameter problem
&lt;br&gt;JRUBY-3731 &amp;nbsp; &amp;nbsp; --debug causes problems. Methods are missing.
&lt;br&gt;JRUBY-3733 &amp;nbsp; &amp;nbsp; Accessors arity
&lt;br&gt;JRUBY-3736 &amp;nbsp; &amp;nbsp; JRuby won't load a .jar if a .so is found too.
&lt;br&gt;JRUBY-3738 &amp;nbsp; &amp;nbsp; jruby 1.3.0 windows vista issues: doesn't output
&lt;br&gt;helpful error if JAVA_HOME undefined, and JAVA_HOME path defined in
&lt;br&gt;quotes not supported
&lt;br&gt;JRUBY-3745 &amp;nbsp; &amp;nbsp; RubySpec: Hash#rehash causes a RuntimeError to be
&lt;br&gt;raised if called inside an iterator block
&lt;br&gt;JRUBY-3747 &amp;nbsp; &amp;nbsp; String#gsub! with pattern and block raises a
&lt;br&gt;RuntimeError when self is frozen
&lt;br&gt;JRUBY-3748 &amp;nbsp; &amp;nbsp; RubySpec: Kernel.Integer raises an ArgumentError if
&lt;br&gt;there is a space between the + and number
&lt;br&gt;JRUBY-3750 &amp;nbsp; &amp;nbsp; JRUBY_OPTS=&amp;quot;--1.9&amp;quot; results in error &amp;quot;jruby: unknown option --1.9&amp;quot;
&lt;br&gt;JRUBY-3751 &amp;nbsp; &amp;nbsp; YAML.load fails for Struct objects with non-standard initialize
&lt;br&gt;JRUBY-3757 &amp;nbsp; &amp;nbsp; String.split is broken
&lt;br&gt;JRUBY-3759 &amp;nbsp; &amp;nbsp; syslog not available for JRuby --1.9
&lt;br&gt;JRUBY-3761 &amp;nbsp; &amp;nbsp; FileUtils.chown_R produces ArgumentError when the
&lt;br&gt;directory contains a symlink
&lt;br&gt;JRUBY-3766 &amp;nbsp; &amp;nbsp; update .classpath for building jruby with eclipse
&lt;br&gt;JRUBY-3773 &amp;nbsp; &amp;nbsp; CLONE -custom YAML serialization ignored by JRuby
&lt;br&gt;JRUBY-3774 &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;define_method :name do | &amp;blk | &amp;lt;&amp;lt; ignores
&lt;br&gt;JRUBY-3776 &amp;nbsp; &amp;nbsp; The install-gems goal throws exceptions
&lt;br&gt;JRUBY-3777 &amp;nbsp; &amp;nbsp; Exception on Solaris loading ruby gems
&lt;br&gt;JRUBY-3778 &amp;nbsp; &amp;nbsp; clone of stderr and stdout not working
&lt;br&gt;JRUBY-3782 &amp;nbsp; &amp;nbsp; BSF interface - apply nonfunctional with parameters
&lt;br&gt;JRUBY-3783 &amp;nbsp; &amp;nbsp; Timeout.timeout doesn't raise given exception
&lt;br&gt;JRUBY-3784 &amp;nbsp; &amp;nbsp; More than 2G memory required for jruby -e 'buf =
&lt;br&gt;IO.read(&amp;quot;/tmp/1GB.txt&amp;quot;); p buf.size'
&lt;br&gt;JRUBY-3788 &amp;nbsp; &amp;nbsp; argument population of blocks broke in at least one
&lt;br&gt;case somewhere between 1.2 and 1.3
&lt;br&gt;JRUBY-3796 &amp;nbsp; &amp;nbsp; ruby_string.to_java_string has different encoding than
&lt;br&gt;new java.lang.String(ruby_string)
&lt;br&gt;JRUBY-3799 &amp;nbsp; &amp;nbsp; Bug in native timeout module causes hang when waiting on IO
&lt;br&gt;JRUBY-3800 &amp;nbsp; &amp;nbsp; CLASSPATH environment variable should be ignored if
&lt;br&gt;-J-cp or -J-classpath are provided
&lt;br&gt;JRUBY-3806 &amp;nbsp; &amp;nbsp; Encoding problems with File.expand_path after
&lt;br&gt;JRUBY-3576 fix for Macroman issue
&lt;br&gt;JRUBY-3807 &amp;nbsp; &amp;nbsp; jgem --1.9 broken
&lt;br&gt;JRUBY-3808 &amp;nbsp; &amp;nbsp; Gem redclothcoderay doesn't installs under jruby
&lt;br&gt;JRUBY-3809 &amp;nbsp; &amp;nbsp; require 'tmpdir' fails when embedded in a java app that
&lt;br&gt;has messed with the classpath
&lt;br&gt;JRUBY-3810 &amp;nbsp; &amp;nbsp; StringIO#truncate problem
&lt;br&gt;JRUBY-3811 &amp;nbsp; &amp;nbsp; require 'Complex' fails when running in Ruby 1.9 mode
&lt;br&gt;JRUBY-3815 &amp;nbsp; &amp;nbsp; Time#strftime breaks with multibyte characters, affects
&lt;br&gt;I18n#localize
&lt;br&gt;JRUBY-3816 &amp;nbsp; &amp;nbsp; Objects returned from Java library call not fully unwrapped
&lt;br&gt;JRUBY-3817 &amp;nbsp; &amp;nbsp; Timeouts in Net::HTTP raise Timeout::ExitException
&lt;br&gt;instead of Timeout::Error for Ruby 1.8
&lt;br&gt;JRUBY-3820 &amp;nbsp; &amp;nbsp; timeout library should throw an anonymous exception
&lt;br&gt;type while unrolling stack
&lt;br&gt;JRUBY-3821 &amp;nbsp; &amp;nbsp; Array.flatten performance issue
&lt;br&gt;JRUBY-3823 &amp;nbsp; &amp;nbsp; Wrong property in netbeans-ant.xml
&lt;br&gt;JRUBY-3827 &amp;nbsp; &amp;nbsp; WEBrick binds only to localhost, not to requested bind addresses
&lt;br&gt;JRUBY-3828 &amp;nbsp; &amp;nbsp; JavaUtil.convertRubyToJava fails to convert objects in
&lt;br&gt;seemingly random cases
&lt;br&gt;JRUBY-3832 &amp;nbsp; &amp;nbsp; FFI: apparent memory leak when using callbacks
&lt;br&gt;JRUBY-3833 &amp;nbsp; &amp;nbsp; Running RubySpec ci :language with -X+C fails locally,
&lt;br&gt;but not in &amp;quot;ant spec&amp;quot;
&lt;br&gt;JRUBY-3835 &amp;nbsp; &amp;nbsp; FFI AbstractMemory#get_array_of_uint64 is missing
&lt;br&gt;JRUBY-3836 &amp;nbsp; &amp;nbsp; backquotes can raise IO Error (closed stream)
&lt;br&gt;JRUBY-3838 &amp;nbsp; &amp;nbsp; Exceptions coming out of eval no longer have line numbers
&lt;br&gt;JRUBY-3845 &amp;nbsp; &amp;nbsp; Invoker for Array#pop isn't generated on 187 branch
&lt;br&gt;JRUBY-3849 &amp;nbsp; &amp;nbsp; Resolv.getaddress is broken on OSX 1.5
&lt;br&gt;JRUBY-3850 &amp;nbsp; &amp;nbsp; Hash#select returns an Array of entries for which block
&lt;br&gt;is true FAILED
&lt;br&gt;JRUBY-3851 &amp;nbsp; &amp;nbsp; Hash#update raises a TypeError if called on a
&lt;br&gt;non-empty, frozen instance ERROR
&lt;br&gt;JRUBY-3852 &amp;nbsp; &amp;nbsp; Hash#eql? spec failures
&lt;br&gt;JRUBY-3853 &amp;nbsp; &amp;nbsp; Two Enumerable spec bugs for 1.8.7 (one related to break)
&lt;br&gt;JRUBY-3854 &amp;nbsp; &amp;nbsp; Five spec failures in ConditionVariable after merge
&lt;br&gt;JRUBY-3856 &amp;nbsp; &amp;nbsp; YAML.load is broken when loading structs with
&lt;br&gt;initialize method with arguments
&lt;br&gt;JRUBY-3858 &amp;nbsp; &amp;nbsp; NPE in RubyRegexp.java with --1.9
&lt;br&gt;JRUBY-3859 &amp;nbsp; &amp;nbsp; VariadicInvoker missing a BOOL case
&lt;br&gt;JRUBY-3860 &amp;nbsp; &amp;nbsp; Rational(3,-4).to_i should return -1
&lt;br&gt;JRUBY-3861 &amp;nbsp; &amp;nbsp; Shared &amp;quot;box&amp;quot; in DefaultMethod breaking visibility
&lt;br&gt;re-checks in some cases
&lt;br&gt;JRUBY-3862 &amp;nbsp; &amp;nbsp; Socket.pack_sockaddr_in is broken on linux
&lt;br&gt;JRUBY-3863 &amp;nbsp; &amp;nbsp; Support boolean arguments to and return values from ffi callbacks
&lt;br&gt;JRUBY-3867 &amp;nbsp; &amp;nbsp; Nailgun not supported in Windows bat files
&lt;br&gt;JRUBY-3869 &amp;nbsp; &amp;nbsp; 'puts []' prints a newline
&lt;br&gt;JRUBY-3870 &amp;nbsp; &amp;nbsp; Object#singleton_methods(true) doesn't include inherited methods
&lt;br&gt;JRUBY-3871 &amp;nbsp; &amp;nbsp; strftime doesn't support %h
&lt;br&gt;JRUBY-3873 &amp;nbsp; &amp;nbsp; StringIndexOutOfBoundsException if the last character
&lt;br&gt;in format is '%' in Time.strftime
&lt;br&gt;JRUBY-3874 &amp;nbsp; &amp;nbsp; it would be nice if LoadService could log where it
&lt;br&gt;searches and what it finds
&lt;br&gt;JRUBY-3875 &amp;nbsp; &amp;nbsp; TypeError when providing nil as the third parameter to
&lt;br&gt;TCPSocket.new/TCPSocket.open
&lt;br&gt;JRUBY-3876 &amp;nbsp; &amp;nbsp; JRuby crashes on using the three-parameter version of
&lt;br&gt;TCPSocket.open
&lt;br&gt;JRUBY-3878 &amp;nbsp; &amp;nbsp; String representation of arrays and symbols does not
&lt;br&gt;match ruby 1.9
&lt;br&gt;JRUBY-3879 &amp;nbsp; &amp;nbsp; Array#pack('d') is incorrect
&lt;br&gt;JRUBY-3880 &amp;nbsp; &amp;nbsp; Net::HTTP doesn't timeout as expected when using timeout.rb
&lt;br&gt;JRUBY-3882 &amp;nbsp; &amp;nbsp; Java raised exceptions fail to list JRuby caller method
&lt;br&gt;in the backtrace
&lt;br&gt;JRUBY-3884 &amp;nbsp; &amp;nbsp; Rubyspec failures: Dir#inspect includes the directory name
&lt;br&gt;JRUBY-3885 &amp;nbsp; &amp;nbsp; Rubyspec failures: Enumerable#none?
&lt;br&gt;JRUBY-3889 &amp;nbsp; &amp;nbsp; java errors are hidden when an instance of a class is
&lt;br&gt;created and we used the method include_package to load the specific
&lt;br&gt;java package
&lt;br&gt;JRUBY-3890 &amp;nbsp; &amp;nbsp; NativeExceptions have ugly stack traces
&lt;br&gt;JRUBY-3891 &amp;nbsp; &amp;nbsp; JavaSupport.handleNativeException doesn't seem handle
&lt;br&gt;superclasses properly
&lt;br&gt;JRUBY-3892 &amp;nbsp; &amp;nbsp; Running rake rdoc from within jruby-complete.jar
&lt;br&gt;results in &amp;quot;undefined method `key' for nil:NilClass&amp;quot;
&lt;br&gt;JRUBY-3893 &amp;nbsp; &amp;nbsp; Can't require yaml from jruby-complete.jar at head
&lt;br&gt;JRUBY-3894 &amp;nbsp; &amp;nbsp; Problems with __FILE__ and file loaded from a jar
&lt;br&gt;JRUBY-3896 &amp;nbsp; &amp;nbsp; '--ng' in JRUBY_OPTS is not passed correctly
&lt;br&gt;JRUBY-3897 &amp;nbsp; &amp;nbsp; Dir::entries doesn't work within a jar
&lt;br&gt;JRUBY-3898 &amp;nbsp; &amp;nbsp; Two methods, tryCompile and runScript, in
&lt;br&gt;org.jruby.Ruby should be public to enable compileable option for
&lt;br&gt;embedding
&lt;br&gt;JRUBY-3907 &amp;nbsp; &amp;nbsp; Time.strftime allows tokens deriving from GNU C library
&lt;br&gt;JRUBY-3908 &amp;nbsp; &amp;nbsp; Addendum to JRUBY-3896
&lt;br&gt;JRUBY-3910 &amp;nbsp; &amp;nbsp; Java List to Ruby Array conversion ~100% slower than
&lt;br&gt;primitive array conversion
&lt;br&gt;JRUBY-3911 &amp;nbsp; &amp;nbsp; hpricot is busted when truncating multibyte strings
&lt;br&gt;JRUBY-3912 &amp;nbsp; &amp;nbsp; FFI - Some Ruby-FFI specs fail on JRuby
&lt;br&gt;JRUBY-3913 &amp;nbsp; &amp;nbsp; Date.strftime bug fixes (%u, %w, %s) and addition of %G
&lt;br&gt;JRUBY-3914 &amp;nbsp; &amp;nbsp; In 1.9 mode, Time.now == nil should return false, not nil
&lt;br&gt;JRUBY-3915 &amp;nbsp; &amp;nbsp; JFFI needs binaries for more arches
&lt;br&gt;JRUBY-3916 &amp;nbsp; &amp;nbsp; Clean up nailgun directory a little
&lt;br&gt;JRUBY-3919 &amp;nbsp; &amp;nbsp; Creation of BouncyCastle security provider results in
&lt;br&gt;security errors when run in an unprivileged context
&lt;br&gt;JRUBY-3921 &amp;nbsp; &amp;nbsp; Can't run ruby specs for ruby 1.9
&lt;br&gt;JRUBY-3922 &amp;nbsp; &amp;nbsp; File.basename doesn't cope with UTF8 strings
&lt;br&gt;JRUBY-3927 &amp;nbsp; &amp;nbsp; Jar complete doesn't compile
&lt;br&gt;JRUBY-3928 &amp;nbsp; &amp;nbsp; Net::HTTP doesn't timeout as expected when using timeout.rb
&lt;br&gt;JRUBY-3929 &amp;nbsp; &amp;nbsp; checksums for new versions please
&lt;br&gt;JRUBY-3932 &amp;nbsp; &amp;nbsp; Set == broken in 1.9
&lt;br&gt;JRUBY-3933 &amp;nbsp; &amp;nbsp; [19] IO.gets missing additional limit field
&lt;br&gt;JRUBY-3936 &amp;nbsp; &amp;nbsp; Math.gamma fails on certain values when it shouldn't
&lt;br&gt;JRUBY-3937 &amp;nbsp; &amp;nbsp; Socket::getaddrinfo() returns incorrect data on solaris
&lt;br&gt;JRUBY-3940 &amp;nbsp; &amp;nbsp; Rubyspec: Kernel#== compare spec failing
&lt;br&gt;JRUBY-3941 &amp;nbsp; &amp;nbsp; [19] socket.do_not_reverse_lookup is unimplemented
&lt;br&gt;JRUBY-3942 &amp;nbsp; &amp;nbsp; [1.9] File.new should accept encoding options within
&lt;br&gt;the mode parameter and a hash with options as the third parameter
&lt;br&gt;JRUBY-3945 &amp;nbsp; &amp;nbsp; [1.9] IO and file initialization should ignore internal
&lt;br&gt;encoding when is equal to external encoding
&lt;br&gt;JRUBY-3946 &amp;nbsp; &amp;nbsp; [1.9] Encoding.default_external should get encoding
&lt;br&gt;from default charset when is nil
&lt;br&gt;JRUBY-3947 &amp;nbsp; &amp;nbsp; [1.9] Domain errors on Math.log(0), Math.log2(0),
&lt;br&gt;Math.log10(0), Math.atanh(1), Math.atanh(-1)
&lt;br&gt;JRUBY-3951 &amp;nbsp; &amp;nbsp; TMail fails to install without modifications mkmf.rb
&lt;br&gt;JRUBY-3952 &amp;nbsp; &amp;nbsp; Update pom.xml to reflect move from SVN to Git.
&lt;br&gt;JRUBY-3953 &amp;nbsp; &amp;nbsp; jruby.bat doesn't run on Windows 7
&lt;br&gt;JRUBY-3954 &amp;nbsp; &amp;nbsp; JRuby operating differently from MRI with andand gem
&lt;br&gt;JRUBY-3956 &amp;nbsp; &amp;nbsp; Can't do Enumerator#next in --1.9? Not implemented yet?
&lt;br&gt;JRUBY-3964 &amp;nbsp; &amp;nbsp; Threads created for Fibers/Generators/Enumerator.next
&lt;br&gt;must die due to GC and raise a nice error when threads are unavailable
&lt;br&gt;JRUBY-3967 &amp;nbsp; &amp;nbsp; remove some duplicated tests that have been added to rubyspecs
&lt;br&gt;JRUBY-3968 &amp;nbsp; &amp;nbsp; YAML.load produces: allocator undefined for Symbol (TypeError)
&lt;br&gt;JRUBY-3969 &amp;nbsp; &amp;nbsp; LICENSE.RUBY is missing in bin and source distributive
&lt;br&gt;for the JRuby 1.3.1 and 1.3
&lt;br&gt;JRUBY-3970 &amp;nbsp; &amp;nbsp; jruby.bat errors out with unexpected characters
&lt;br&gt;JRUBY-3971 &amp;nbsp; &amp;nbsp; jruby --ng gives &amp;quot;Access denied&amp;quot; message
&lt;br&gt;JRUBY-3974 &amp;nbsp; &amp;nbsp; In-proc execution loses almost all parent-process config values
&lt;br&gt;JRUBY-3977 &amp;nbsp; &amp;nbsp; &amp;quot;require&amp;quot; won't load jars with &amp;quot;.so&amp;quot; anywhere in the name
&lt;br&gt;JRUBY-3979 &amp;nbsp; &amp;nbsp; [1.9] Array.collect returns an Enumerator when no block given
&lt;br&gt;JRUBY-3981 &amp;nbsp; &amp;nbsp; Cannot connect to ActiveRecord database
&lt;br&gt;JRUBY-3984 &amp;nbsp; &amp;nbsp; [1.9] Array improvements to solve several specs
&lt;br&gt;JRUBY-3985 &amp;nbsp; &amp;nbsp; [1.9] ARGF improvements to solve several specs
&lt;br&gt;JRUBY-3987 &amp;nbsp; &amp;nbsp; [1.9] Bignum improvements to pass some ruby specs
&lt;br&gt;JRUBY-3988 &amp;nbsp; &amp;nbsp; Fixnums quietly lop off bits when calling methods of
&lt;br&gt;lesser precision than long
&lt;br&gt;JRUBY-3989 &amp;nbsp; &amp;nbsp; nil can't be passed for numeric Java types in some
&lt;br&gt;cases, even though nil.to_i treats it as 0
&lt;br&gt;JRUBY-3990 &amp;nbsp; &amp;nbsp; Fixnums are inconsistently converted when target type
&lt;br&gt;is java.lang.Object
&lt;br&gt;JRUBY-3991 &amp;nbsp; &amp;nbsp; [1.9] Comparable improvements to pass ruby specs
&lt;br&gt;JRUBY-3993 &amp;nbsp; &amp;nbsp; [1.9] Dir improvements to pass some ruby specs
&lt;br&gt;JRUBY-3994 &amp;nbsp; &amp;nbsp; [1.9] Enumerable improvements to pass some ruby specs
&lt;br&gt;JRUBY-3995 &amp;nbsp; &amp;nbsp; ant bails with unrecognized -d32 option on Windows
&lt;br&gt;JRUBY-3997 &amp;nbsp; &amp;nbsp; IBM JDK does not support some String.format specifiers
&lt;br&gt;JRUBY-3998 &amp;nbsp; &amp;nbsp; Path separators differ between jruby and jruby --ng on Windows
&lt;br&gt;JRUBY-3999 &amp;nbsp; &amp;nbsp; [PATCH] Improved Sorting Algorithm
&lt;br&gt;JRUBY-4000 &amp;nbsp; &amp;nbsp; [1.9] Fixnum improvements to solve ruby specs
&lt;br&gt;JRUBY-4001 &amp;nbsp; &amp;nbsp; [PATCH] Fixed float rubyspecs
&lt;br&gt;JRUBY-4003 &amp;nbsp; &amp;nbsp; NegativeArraySizeException in RubyHash.keys
&lt;br&gt;JRUBY-4004 &amp;nbsp; &amp;nbsp; jrubyc should return a non-zero return code if compilation fails
&lt;br&gt;JRUBY-4011 &amp;nbsp; &amp;nbsp; IO.binmode should raise an IOError on closed stream
&lt;br&gt;JRUBY-4017 &amp;nbsp; &amp;nbsp; [1.8] Method#name and UnboundMethod#name should return
&lt;br&gt;strings, not symbols
&lt;br&gt;JRUBY-4018 &amp;nbsp; &amp;nbsp; jruby --ng-server aborts on Windows with &amp;quot;the syntax of
&lt;br&gt;the command is incorrect&amp;quot;
&lt;br&gt;JRUBY-4019 &amp;nbsp; &amp;nbsp; Build issues when changes from rev 2eef39 are included
&lt;br&gt;JRUBY-4021 &amp;nbsp; &amp;nbsp; [1.9] undefined methods Hash.compare_by_identity and
&lt;br&gt;Hash.compare_by_identity?
&lt;br&gt;JRUBY-4022 &amp;nbsp; &amp;nbsp; 9 rubyspec failures for SecureRandom
&lt;br&gt;JRUBY-4029 &amp;nbsp; &amp;nbsp; String hash keys should be copied
&lt;br&gt;JRUBY-4036 &amp;nbsp; &amp;nbsp; Regression: Instead of java-based ThreadLibrary a
&lt;br&gt;pure-ruby thread.rb from stdlib is used
&lt;br&gt;JRUBY-4037 &amp;nbsp; &amp;nbsp; Ruby 1.8 compatibility: /#{/\w/}/uo does not work as expected
&lt;br&gt;JRUBY-4038 &amp;nbsp; &amp;nbsp; nil implicitly casts to java.lang.Integer instead of
&lt;br&gt;java.lang.Long during method dispatch
&lt;br&gt;JRUBY-4039 &amp;nbsp; &amp;nbsp; Implicit conversion to List&amp;lt;Long&amp;gt; results in a
&lt;br&gt;List&amp;lt;Byte&amp;gt; or List&amp;lt;Integer&amp;gt;
&lt;br&gt;JRUBY-4041 &amp;nbsp; &amp;nbsp; tool/nailgun/configure is not executable
&lt;br&gt;JRUBY-4042 &amp;nbsp; &amp;nbsp; [windows] jruby.bat without parameters fails
&lt;br&gt;JRUBY-4043 &amp;nbsp; &amp;nbsp; could not coerce BigDecimal to class java.lang.Object (TypeError)
&lt;br&gt;JRUBY-4045 &amp;nbsp; &amp;nbsp; [windows] jruby -e &amp;quot;p $LOAD_PATH&amp;quot; fails (regression)
&lt;br&gt;JRUBY-4046 &amp;nbsp; &amp;nbsp; [windows] UNIXSocket and UNIXServer should not be
&lt;br&gt;defined on Windows (regression)
&lt;br&gt;JRUBY-4050 &amp;nbsp; &amp;nbsp; Installer PATH modification should be optional
&lt;br&gt;JRUBY-4051 &amp;nbsp; &amp;nbsp; Recieve error &amp;quot;\jruby-1.4.0RC1\bin\) was unexpected at
&lt;br&gt;this time&amp;quot; when i try use jruby or jirb
&lt;br&gt;JRUBY-4052 &amp;nbsp; &amp;nbsp; JRuby on windows does not provide the calloc function
&lt;br&gt;JRUBY-4053 &amp;nbsp; &amp;nbsp; ActiveRecord AssociationCollection#== method is
&lt;br&gt;returning false on equal results
&lt;br&gt;JRUBY-4055 &amp;nbsp; &amp;nbsp; [windows] jruby.bat can't handle caret sign (^) and
&lt;br&gt;question mark (?) in command line
&lt;br&gt;JRUBY-4056 &amp;nbsp; &amp;nbsp; unsigned values values should be stuffed into Java
&lt;br&gt;signed values like Java does
&lt;br&gt;JRUBY-4058 &amp;nbsp; &amp;nbsp; [windows] jruby.bat eats % signs
&lt;br&gt;JRUBY-4059 &amp;nbsp; &amp;nbsp; test filepath containing _p is split by _jrubyvmopts.bat
&lt;br&gt;JRUBY-4060 &amp;nbsp; &amp;nbsp; gem command doesn't work when RUBYOPT set
&lt;br&gt;JRUBY-4062 &amp;nbsp; &amp;nbsp; RUBYOPT=-rubygems causes various problems for JRuby
&lt;br&gt;JRUBY-4063 &amp;nbsp; &amp;nbsp; memory stomping error with debug JVM on Solaris
&lt;br&gt;JRUBY-4064 &amp;nbsp; &amp;nbsp; Yecht regression: require'ing rubygems now makes nil,
&lt;br&gt;true, false all tainted
&lt;br&gt;JRUBY-4065 &amp;nbsp; &amp;nbsp; java_alias to compliment and combine the best of
&lt;br&gt;java_method and java_send
&lt;br&gt;JRUBY-4066 &amp;nbsp; &amp;nbsp; ruby subclass of java public void method cannot return
&lt;br&gt;numeric values
&lt;br&gt;JRUBY-4069 &amp;nbsp; &amp;nbsp; [windows] jruby.jar is not in bootclasspath, JRuby
&lt;br&gt;starts much slower then it colud
&lt;br&gt;JRUBY-4070 &amp;nbsp; &amp;nbsp; Can't find Nailgun classes on Windows
&lt;br&gt;JRUBY-4071 &amp;nbsp; &amp;nbsp; SystemCallError.new does not create an Errno instance
&lt;br&gt;JRUBY-4078 &amp;nbsp; &amp;nbsp; rcov feils with NullPointerException with JRuby
&lt;br&gt;1.4.0RC1. Has worked with all JRuby versions since 2008.
&lt;br&gt;JRUBY-4079 &amp;nbsp; &amp;nbsp; rcov fails with NullPointerException with JRuby
&lt;br&gt;1.4.0RC1. Has worked with all JRuby versions since 2008.
&lt;br&gt;JRUBY-4081 &amp;nbsp; &amp;nbsp; Long stored in RubyArray is returned as Byte
&lt;br&gt;JRUBY-4084 &amp;nbsp; &amp;nbsp; Working with the enumerable methods on arrays
&lt;br&gt;containing strings created by splicing can raise a Java Exception
&lt;br&gt;JRUBY-4085 &amp;nbsp; &amp;nbsp; test/test_system_error.rb is broken
&lt;br&gt;JRUBY-4089 &amp;nbsp; &amp;nbsp; Mangled Joda-Time package breaks public APIs that
&lt;br&gt;return or consume Joda-Time objects
&lt;br&gt;JRUBY-4091 &amp;nbsp; &amp;nbsp; IConv.conv ignores //IGNORE flag into the encoding parameter
&lt;br&gt;JRUBY-4094 &amp;nbsp; &amp;nbsp; variadic FFI functions with struct-by-value return
&lt;br&gt;types are broken
&lt;br&gt;JRUBY-4095 &amp;nbsp; &amp;nbsp; FFI functions that return a struct-by-value cannot
&lt;br&gt;accept non-primitive parameters
&lt;br&gt;JRUBY-4096 &amp;nbsp; &amp;nbsp; JVM crash on exit when loading library with FFI
&lt;br&gt;JRUBY-4100 &amp;nbsp; &amp;nbsp; Native jruby launcher needed (at least for Windows)
&lt;br&gt;JRUBY-4108 &amp;nbsp; &amp;nbsp; LoadService::SuffixType too private now for LoadService magic
&lt;br&gt;JRUBY-4109 &amp;nbsp; &amp;nbsp; Inconsistent handling of Fixnum/Bignum boundary
&lt;br&gt;JRUBY-4111 &amp;nbsp; &amp;nbsp; Solaris 32bit stat struct too large
&lt;br&gt;JRUBY-4114 &amp;nbsp; &amp;nbsp; jffi in 1.4 needs update to 0.6.0.2
&lt;br&gt;JRUBY-4120 &amp;nbsp; &amp;nbsp; [windows] Native launcher doesn't honor CLASSPATH env variable
&lt;br&gt;JRUBY-4121 &amp;nbsp; &amp;nbsp; [major regression] Most *.bat commands don't work anymore
&lt;br&gt;JRUBY-4122 &amp;nbsp; &amp;nbsp; RbConfig/Gem cleanup after switch to native launcher
&lt;br&gt;JRUBY-4124 &amp;nbsp; &amp;nbsp; [windows] Native launcher doesn't honor JAVA_HOME env variable
&lt;br&gt;JRUBY-4128 &amp;nbsp; &amp;nbsp; FFI needs NullPointerError exception class
&lt;br&gt;JRUBY-4129 &amp;nbsp; &amp;nbsp; gem install can not work when the gem name contails '_p'
&lt;br&gt;JRUBY-4131 &amp;nbsp; &amp;nbsp; Nailgun doesn't work on Windows 2000
&lt;br&gt;JRUBY-4132 &amp;nbsp; &amp;nbsp; [windows] JRuby's native launcher provides empty name
&lt;br&gt;to jps/jconsole
&lt;br&gt;JRUBY-4133 &amp;nbsp; &amp;nbsp; JRuby native launcher should look at its binary name
&lt;br&gt;and launch appropriate tools
&lt;br&gt;JRUBY-4136 &amp;nbsp; &amp;nbsp; [windows] Native jrubyw.exe is needed
&lt;br&gt;JRUBY-4137 &amp;nbsp; &amp;nbsp; ant dist/rake installers should generate sha1 and md5
&lt;br&gt;files for installer files
&lt;br&gt;JRUBY-4138 &amp;nbsp; &amp;nbsp; Open up LoadService some more
&lt;br&gt;JRUBY-4139 &amp;nbsp; &amp;nbsp; FFI::Struct and FFI::Union do not call member struct's
&lt;br&gt;initialize method
&lt;br&gt;JRUBY-4142 &amp;nbsp; &amp;nbsp; [regression] TCPSocket raises wrong exception when can't connect
&lt;br&gt;JRUBY-4144 &amp;nbsp; &amp;nbsp; Remove all vestiges of individual version numbers from
&lt;br&gt;install4j scripts
&lt;br&gt;JRUBY-4145 &amp;nbsp; &amp;nbsp; Windows Launcher with just IBM Java installed will not
&lt;br&gt;execute properly
&lt;br&gt;JRUBY-4150 &amp;nbsp; &amp;nbsp; rake --trace causes dialog box (Missing argument) on Windows
&lt;br&gt;JRUBY-4153 &amp;nbsp; &amp;nbsp; Rational#new! is no longer defined
&lt;br&gt;JRUBY-4154 &amp;nbsp; &amp;nbsp; [regression] Thread.exclusive is undefined
&lt;br&gt;JRUBY-4155 &amp;nbsp; &amp;nbsp; Warbler install fails on RC2
&lt;br&gt;JRUBY-4157 &amp;nbsp; &amp;nbsp; fannkuch and chameneosredux benchmarks timing out on
&lt;br&gt;The Benchmarks Game
&lt;br&gt;JRUBY-4161 &amp;nbsp; &amp;nbsp; Potential Regression: Extlib spec suite:
&lt;br&gt;Enumerable#entries wrong # of arguments(0 for 1)
&lt;br&gt;JRUBY-4172 &amp;nbsp; &amp;nbsp; Rbconfig's Config::CONFIG provides wrong name for Windows 7
&lt;br&gt;JRUBY-4179 &amp;nbsp; &amp;nbsp; [regression] [1.8] Dir.mkdir should accept any arg that
&lt;br&gt;responds to #to_str
&lt;br&gt;JRUBY-4185 &amp;nbsp; &amp;nbsp; JRuby using unreleased version of jcodings.jar,
&lt;br&gt;prevents usage of jvyamlb in same app.
&lt;br&gt;JRUBY-4189 &amp;nbsp; &amp;nbsp; calling to_java(:string) on a ruby array with a symbol
&lt;br&gt;in it now causes java exception
&lt;br&gt;JRUBY-4190 &amp;nbsp; &amp;nbsp; java.util.List.sort regression since 1.3.1
&lt;br&gt;JRUBY-3403 &amp;nbsp; &amp;nbsp; &amp;nbsp; Socket close_read and close_write should use
&lt;br&gt;appropriate methods on java.net.Socket
&lt;br&gt;JRUBY-3725 &amp;nbsp; &amp;nbsp; Fix for JRUBY-3563 introduces regression in Socket#getnameinfo
&lt;br&gt;JRUBY-3740 &amp;nbsp; &amp;nbsp; Thread#wakeup not working
&lt;br&gt;JRUBY-3743 &amp;nbsp; &amp;nbsp; Timeout no longer supports sub-second timeouts
&lt;br&gt;JRUBY-3744 &amp;nbsp; &amp;nbsp; Ruby BigDecimal vulnerability seems to affect JRuby as well
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;blog: &lt;a href=&quot;http://blog.enebo.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.enebo.com&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;twitter: tom_enebo
&lt;br&gt;mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26172836&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tom.enebo@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-ANN--JRuby-1.4.0-Released-tp26172836p26172836.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26171863</id>
	<title>[jira] Created: (JRUBY-4204) JRuby bash launcher handles server/client params in JRUBY_OPTS/JAVA_OPTS incorrectly</title>
	<published>2009-11-02T14:29:57Z</published>
	<updated>2009-11-02T14:29:57Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">JRuby bash launcher handles server/client params in JRUBY_OPTS/JAVA_OPTS incorrectly
&lt;br&gt;------------------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4204
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4204&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4204&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: Miscellaneous
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Vladimir Sizikov
&lt;br&gt;&lt;br&gt;&lt;br&gt;No matter what is set in JRUBY_OPTS and/or JAVA_OPTS, jruby *always* executes in client mode, since -client is hardcoded in jruby bash launcher.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4204%29-JRuby-bash-launcher-handles-server-client-params-in-JRUBY_OPTS-JAVA_OPTS-incorrectly-tp26171863p26171863.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26170378</id>
	<title>[jira] Created: (JRUBY-4203) gem install failure windows</title>
	<published>2009-11-02T12:42:55Z</published>
	<updated>2009-11-02T12:42:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">gem install failure windows
&lt;br&gt;---------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4203
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4203&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4203&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.4.0RC3
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: windows xp 1.4.0RC3
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Roger Pack
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Thomas E Enebo
&lt;br&gt;&lt;br&gt;&lt;br&gt;clone this
&lt;br&gt;&lt;a href=&quot;http://github.com/rdp/rdoc&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://github.com/rdp/rdoc&lt;/a&gt;&lt;br&gt;&lt;br&gt;then with jruby:
&lt;br&gt;&lt;br&gt;rake gem_install
&lt;br&gt;yields
&lt;br&gt;&lt;br&gt;.4.6/test/xref_test_case.rb
&lt;br&gt;cd -
&lt;br&gt;&amp;nbsp; Successfully built RubyGem
&lt;br&gt;&amp;nbsp; Name: rdp-rdoc
&lt;br&gt;&amp;nbsp; Version: 2.4.6
&lt;br&gt;&amp;nbsp; File: rdp-rdoc-2.4.6.gem
&lt;br&gt;mv rdp-rdoc-2.4.6.gem pkg/rdp-rdoc-2.4.6.gem
&lt;br&gt;sudo jgem install &amp;nbsp;minitest --version '~&amp;gt; 1.3'
&lt;br&gt;'sudo' is not recognized as an internal or external command,
&lt;br&gt;operable program or batch file.
&lt;br&gt;rake aborted!
&lt;br&gt;Command failed with status (1): [sudo jgem install &amp;nbsp;minitest --version '~&amp;gt; ...]
&lt;br&gt;&lt;br&gt;&lt;br&gt;however with MRI it installs. &amp;nbsp;Or is this a rubygems bug?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4203%29-gem-install-failure-windows-tp26170378p26170378.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26170129</id>
	<title>[jira] Created: (JRUBY-4202) Source distribution does not ship any maven stuff</title>
	<published>2009-11-02T12:24:55Z</published>
	<updated>2009-11-02T12:24:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">Source distribution does not ship any maven stuff
&lt;br&gt;-------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4202
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4202&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4202&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Thomas E Enebo
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Thomas E Enebo
&lt;br&gt;&lt;br&gt;&lt;br&gt;I think one could argue that we don't have to ship maven poms to do all our maven artifact stuff, but we might as well. &amp;nbsp;This is a placehold to get 'ant dist' to bundle maven subdir + top-level pom.xml added to source distro files.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4202%29-Source-distribution-does-not-ship-any-maven-stuff-tp26170129p26170129.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26169691</id>
	<title>[jira] Created: (JRUBY-4201) jruby-gem needs to be installed with actual released version to work</title>
	<published>2009-11-02T11:52:55Z</published>
	<updated>2009-11-02T11:52:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">jruby-gem needs to be installed with actual released version to work
&lt;br&gt;--------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4201
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4201&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4201&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Thomas E Enebo
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Thomas E Enebo
&lt;br&gt;&lt;br&gt;&lt;br&gt;If you run jruby -S rake package on jruby gem Rakefile it uses JRUBY_VERSION which is whatever is defined in the running version of the jruby process and not neccesarily the contents of what should be in the gem. &amp;nbsp;We should have this import default.build.properties just like our main Rakefile. &amp;nbsp;In fact, this will also allow us to omit VERSION= when releasing the gem.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4201%29-jruby-gem-needs-to-be-installed-with-actual-released-version-to-work-tp26169691p26169691.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26168173</id>
	<title>[jira] Created: (JRUBY-4200) redirection issue in windows</title>
	<published>2009-11-02T10:00:55Z</published>
	<updated>2009-11-02T10:00:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">redirection issue in windows
&lt;br&gt;----------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4200
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4200&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4200&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.4.0RC3
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: windows xp
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Roger Pack
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Thomas E Enebo
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Priority: Minor
&lt;br&gt;&lt;br&gt;&lt;br&gt;$ gem install faster_rubygems
&lt;br&gt;&lt;br&gt;jruby 1.4.0RC2 (ruby 1.8.7 patchlevel 174) (2009-10-21 7e77f32) (Java
&lt;br&gt;HotSpot(TM) Client VM 1.6.0_13) [x86-java]
&lt;br&gt;JRuby limited openssl loaded. gem install jruby-openssl for full
&lt;br&gt;support.
&lt;br&gt;&lt;a href=&quot;http://jruby.kenai.com/pages/JRuby_Builtin_OpenSSL&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jruby.kenai.com/pages/JRuby_Builtin_OpenSSL&lt;/a&gt;&lt;br&gt;Building native extensions. &amp;nbsp;This could take a while...
&lt;br&gt;rake aborted!
&lt;br&gt;Don't know how to build task '2&amp;gt;&amp;1'
&lt;br&gt;&lt;br&gt;&lt;br&gt;ref:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.ruby-forum.com/topic/198408#864046&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ruby-forum.com/topic/198408#864046&lt;/a&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4200%29-redirection-issue-in-windows-tp26168173p26168173.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26167389</id>
	<title>[jira] Created: (JRUBY-4199) Consolidate default.build.properties and src/org/jruby.properties to have no redundant data</title>
	<published>2009-11-02T09:12:55Z</published>
	<updated>2009-11-02T09:12:55Z</updated>
	<author>
		<name>JIRA jira@codehaus.org</name>
	</author>
	<content type="html">Consolidate default.build.properties and src/org/jruby.properties to have no redundant data
&lt;br&gt;-------------------------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: JRUBY-4199
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://jira.codehaus.org/browse/JRUBY-4199&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/JRUBY-4199&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: JRuby
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: JRuby 1.4
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Thomas E Enebo
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Assignee: Thomas E Enebo
&lt;br&gt;&lt;br&gt;&lt;br&gt;Consolidate default.build.properties and src/org/jruby.properties to have no redundant data.
&lt;br&gt;&lt;br&gt;We update these two files for every release. &amp;nbsp;Let's make that only one for 1.5.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://jira.codehaus.org/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list, please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-jira--Created%3A-%28JRUBY-4199%29-Consolidate-default.build.properties-and-src-org-jruby.properties-to-have-no-redundant-data-tp26167389p26167389.html" />
</entry>

</feed>
