<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Rapid Prototyping with JRuby</title>
	<atom:link href="http://www.codecommit.com/blog/java/rapid-prototyping-with-jruby/feed" rel="self" type="application/rss+xml" />
	<link>http://www.codecommit.com/blog/java/rapid-prototyping-with-jruby</link>
	<description>(permanently in beta)</description>
	<lastBuildDate>Mon, 09 Jan 2012 20:21:24 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Matt</title>
		<link>http://www.codecommit.com/blog/java/rapid-prototyping-with-jruby/comment-page-1#comment-5138</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Tue, 21 Sep 2010 18:18:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.danielspiewak.com/java/rapid-prototyping-with-jruby#comment-5138</guid>
		<description>So, perhaps you can help, but one thing that none of the examples im finding shows is how to run an application written in java from JRuby.  Actually trying to run MagicDraw (www.magicdraw.com) from JIRB so that I can use the MagicDraw OpenAPI directly to manipulate models and have a chance to try out the MagicDraw OpenAPI on a specific project model before putting the code into eclipse to compile a java plugin....   Any thoughts? Im able to get all the jars included and can then do the import_class for the Main class which is used for launching the program. But after this it crashes with complaints and im afraid its just a shortcoming of me not know what i need to be doing from the jruby side of things....</description>
		<content:encoded><![CDATA[<p>So, perhaps you can help, but one thing that none of the examples im finding shows is how to run an application written in java from JRuby.  Actually trying to run MagicDraw (www.magicdraw.com) from JIRB so that I can use the MagicDraw OpenAPI directly to manipulate models and have a chance to try out the MagicDraw OpenAPI on a specific project model before putting the code into eclipse to compile a java plugin&#8230;.   Any thoughts? Im able to get all the jars included and can then do the import_class for the Main class which is used for launching the program. But after this it crashes with complaints and im afraid its just a shortcoming of me not know what i need to be doing from the jruby side of things&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomasz</title>
		<link>http://www.codecommit.com/blog/java/rapid-prototyping-with-jruby/comment-page-1#comment-2610</link>
		<dc:creator>Tomasz</dc:creator>
		<pubDate>Wed, 02 Jan 2008 15:36:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.danielspiewak.com/java/rapid-prototyping-with-jruby#comment-2610</guid>
		<description>Thanks for posting. Examples like this are nice when learning jruby. Jruby looks very nice for prototyping, and programming in science projects.

I had to move the instance variable @paint into def initialize to get it working in jruby 1.0.3 (java 1.6.0_03 ubuntu)  
 
     def initialize
	@paint2 = GradientPaint.new(0, 0, Color::BLACK, 0, 200, Color::WHITE)
     end</description>
		<content:encoded><![CDATA[<p>Thanks for posting. Examples like this are nice when learning jruby. Jruby looks very nice for prototyping, and programming in science projects.</p>
<p>I had to move the instance variable @paint into def initialize to get it working in jruby 1.0.3 (java 1.6.0_03 ubuntu)  </p>
<p>     def initialize<br />
	@paint2 = GradientPaint.new(0, 0, Color::BLACK, 0, 200, Color::WHITE)<br />
     end</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ron Sweeney</title>
		<link>http://www.codecommit.com/blog/java/rapid-prototyping-with-jruby/comment-page-1#comment-2515</link>
		<dc:creator>Ron Sweeney</dc:creator>
		<pubDate>Sun, 18 Nov 2007 02:47:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.danielspiewak.com/java/rapid-prototyping-with-jruby#comment-2515</guid>
		<description>Thanks for posting... good stuff.  Jruby is at the top of my learning list...</description>
		<content:encoded><![CDATA[<p>Thanks for posting&#8230; good stuff.  Jruby is at the top of my learning list&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vangelis</title>
		<link>http://www.codecommit.com/blog/java/rapid-prototyping-with-jruby/comment-page-1#comment-2287</link>
		<dc:creator>Vangelis</dc:creator>
		<pubDate>Sat, 15 Sep 2007 05:22:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.danielspiewak.com/java/rapid-prototyping-with-jruby#comment-2287</guid>
		<description>Interesting...</description>
		<content:encoded><![CDATA[<p>Interesting&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Spiewak</title>
		<link>http://www.codecommit.com/blog/java/rapid-prototyping-with-jruby/comment-page-1#comment-1192</link>
		<dc:creator>Daniel Spiewak</dc:creator>
		<pubDate>Thu, 01 Mar 2007 16:45:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.danielspiewak.com/java/rapid-prototyping-with-jruby#comment-1192</guid>
		<description>@Tom

Yeah, I think this was the demo I cheated on and didn&#039;t bother testing the JRuby code.  :-)  It is also possible that I did test it, but against the SVN version.  I try to keep my demos 0.9.2 compatible, but...  *shrug*  :-)</description>
		<content:encoded><![CDATA[<p>@Tom</p>
<p>Yeah, I think this was the demo I cheated on and didn&#8217;t bother testing the JRuby code.  <img src='http://www.codecommit.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   It is also possible that I did test it, but against the SVN version.  I try to keep my demos 0.9.2 compatible, but&#8230;  *shrug*  <img src='http://www.codecommit.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.codecommit.com/blog/java/rapid-prototyping-with-jruby/comment-page-1#comment-1191</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Thu, 01 Mar 2007 11:34:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.danielspiewak.com/java/rapid-prototyping-with-jruby#comment-1191</guid>
		<description>Very useful.. it is so hard to find JRuby examples at the moment, crazy as this project has so much potential.

Worth noting that this demo requires the SVN version of JRuby .. or at least something much newer than 0.9.2.

Thanks, T.</description>
		<content:encoded><![CDATA[<p>Very useful.. it is so hard to find JRuby examples at the moment, crazy as this project has so much potential.</p>
<p>Worth noting that this demo requires the SVN version of JRuby .. or at least something much newer than 0.9.2.</p>
<p>Thanks, T.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vasudev Ram</title>
		<link>http://www.codecommit.com/blog/java/rapid-prototyping-with-jruby/comment-page-1#comment-1190</link>
		<dc:creator>Vasudev Ram</dc:creator>
		<pubDate>Sun, 18 Feb 2007 14:53:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.danielspiewak.com/java/rapid-prototyping-with-jruby#comment-1190</guid>
		<description>Interesting post - thanks!

Vasudev Ram
&lt;a href=&quot;http://www.dancingbison.com&quot; rel=&quot;nofollow&quot;&gt;www.dancingbison.com&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Interesting post &#8211; thanks!</p>
<p>Vasudev Ram<br />
<a href="http://www.dancingbison.com" rel="nofollow">http://www.dancingbison.com</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

