<?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"
	>
<channel>
	<title>Comments on: Develop Ruby Applications Using SciTE Editor</title>
	<atom:link href="http://beans.seartipy.com/2006/08/29/develop-ruby-applications-using-scite-editor/feed/" rel="self" type="application/rss+xml" />
	<link>http://beans.seartipy.com/2006/08/29/develop-ruby-applications-using-scite-editor/</link>
	<description>"The time has come...to talk of many [technologies]." --Lewis Carroll('The Walrus and the Carpenter')</description>
	<pubDate>Wed, 08 Oct 2008 11:35:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Programming in Ruby Using SciTE - Windows Issues and Other Tips</title>
		<link>http://beans.seartipy.com/2006/08/29/develop-ruby-applications-using-scite-editor/#comment-132145</link>
		<dc:creator>Programming in Ruby Using SciTE - Windows Issues and Other Tips</dc:creator>
		<pubDate>Sun, 14 Oct 2007 10:37:04 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2006/08/29/develop-ruby-applications-using-scite-editor/#comment-132145</guid>
		<description>[...] of comments(by Mihail and Jonathan) on my earlier post about programming in Ruby using SciTE editor brought this to my notice: When using SciTE to develop Ruby programs on Windows platform, there are [...]</description>
		<content:encoded><![CDATA[<p>[...] of comments(by Mihail and Jonathan) on my earlier post about programming in Ruby using SciTE editor brought this to my notice: When using SciTE to develop Ruby programs on Windows platform, there are [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tabrez</title>
		<link>http://beans.seartipy.com/2006/08/29/develop-ruby-applications-using-scite-editor/#comment-131919</link>
		<dc:creator>tabrez</dc:creator>
		<pubDate>Fri, 12 Oct 2007 12:53:18 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2006/08/29/develop-ruby-applications-using-scite-editor/#comment-131919</guid>
		<description>Mihail, Jonathan:

&lt;ol&gt;&lt;li&gt;If you are using SciTE on Windows, try specifying the full name of the ruby commands in the output window:
irb.bat
ri.bat IO#read

Or you can create shortcuts to these commands. If you use these commands frequently, you can also create a menu item for them in "Tools" menu by adding the following lines to the Ruby properties file(Windows section only):

command.name.0.*.rb=irb
command.0.*.rb=irb.bat
command.is.filter.0.*.rb=1
command.0.subsystem.*.rb=1

You can now invoke &lt;em&gt;irb&lt;/em&gt; from &lt;em&gt;Tools&lt;/em&gt; -&gt; &lt;em&gt;irb&lt;/em&gt; or by pressing &lt;em&gt;Ctrl-0&lt;/em&gt; key combination. (Use another number instead of 0 if you have already bound Ctrl-0 to something else.) 
To know more about what the above properties mean, refer to SciTE documentation from &lt;em&gt;Help&lt;/em&gt; -&gt; &lt;em&gt;SciTE Help&lt;/em&gt; menu item.&lt;/li&gt;&lt;br /&gt;

&lt;li&gt;Regarding the second issue, you are not supposed to enter anything in the DOS command window, just minimize it whenever it opens and continue to work with the SciTE editor i.e. enter your input for the gets method in the _output window_ within the SciTE editor.&lt;/li&gt;
&lt;/ol&gt;
Let me know how it goes. I will probably make a separate post to talk about the issues specific to Windows.</description>
		<content:encoded><![CDATA[<p>Mihail, Jonathan:</p>
<ol>
<li>If you are using SciTE on Windows, try specifying the full name of the ruby commands in the output window:<br />
irb.bat<br />
ri.bat IO#read</p>
<p>Or you can create shortcuts to these commands. If you use these commands frequently, you can also create a menu item for them in &#8220;Tools&#8221; menu by adding the following lines to the Ruby properties file(Windows section only):</p>
<p>command.name.0.*.rb=irb<br />
command.0.*.rb=irb.bat<br />
command.is.filter.0.*.rb=1<br />
command.0.subsystem.*.rb=1</p>
<p>You can now invoke <em>irb</em> from <em>Tools</em> -> <em>irb</em> or by pressing <em>Ctrl-0</em> key combination. (Use another number instead of 0 if you have already bound Ctrl-0 to something else.)<br />
To know more about what the above properties mean, refer to SciTE documentation from <em>Help</em> -> <em>SciTE Help</em> menu item.</p>
</li>
<li>Regarding the second issue, you are not supposed to enter anything in the DOS command window, just minimize it whenever it opens and continue to work with the SciTE editor i.e. enter your input for the gets method in the _output window_ within the SciTE editor.</li>
</ol>
<p>Let me know how it goes. I will probably make a separate post to talk about the issues specific to Windows.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan</title>
		<link>http://beans.seartipy.com/2006/08/29/develop-ruby-applications-using-scite-editor/#comment-131729</link>
		<dc:creator>Jonathan</dc:creator>
		<pubDate>Thu, 11 Oct 2007 02:37:31 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2006/08/29/develop-ruby-applications-using-scite-editor/#comment-131729</guid>
		<description>I have the same problem as Mihail,

To reiterate:
- irb command is not recognized in the ouptut winodw
- can’ type anything in the DOS command window when it is opened via gets.

I'm using Vista. I basically have to open the command prompt and run my programs from there when using Ruby.</description>
		<content:encoded><![CDATA[<p>I have the same problem as Mihail,</p>
<p>To reiterate:<br />
- irb command is not recognized in the ouptut winodw<br />
- can’ type anything in the DOS command window when it is opened via gets.</p>
<p>I&#8217;m using Vista. I basically have to open the command prompt and run my programs from there when using Ruby.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guillermo</title>
		<link>http://beans.seartipy.com/2006/08/29/develop-ruby-applications-using-scite-editor/#comment-79165</link>
		<dc:creator>Guillermo</dc:creator>
		<pubDate>Wed, 04 Jul 2007 10:24:05 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2006/08/29/develop-ruby-applications-using-scite-editor/#comment-79165</guid>
		<description>I think you may need to type irb.bat in the command window in you are running scite on windows</description>
		<content:encoded><![CDATA[<p>I think you may need to type irb.bat in the command window in you are running scite on windows</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: moe</title>
		<link>http://beans.seartipy.com/2006/08/29/develop-ruby-applications-using-scite-editor/#comment-2125</link>
		<dc:creator>moe</dc:creator>
		<pubDate>Fri, 24 Nov 2006 21:25:16 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2006/08/29/develop-ruby-applications-using-scite-editor/#comment-2125</guid>
		<description>i am having problems creating a program to remember what has been typed? it is basically creating your own "key logger," any suggestions?</description>
		<content:encoded><![CDATA[<p>i am having problems creating a program to remember what has been typed? it is basically creating your own &#8220;key logger,&#8221; any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mihail</title>
		<link>http://beans.seartipy.com/2006/08/29/develop-ruby-applications-using-scite-editor/#comment-1030</link>
		<dc:creator>mihail</dc:creator>
		<pubDate>Mon, 23 Oct 2006 17:34:37 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2006/08/29/develop-ruby-applications-using-scite-editor/#comment-1030</guid>
		<description>For both - "the system cannot find the file specified".
When run them in a DOS Command Prompt both work - the path is set right. 
I am confused...</description>
		<content:encoded><![CDATA[<p>For both - &#8220;the system cannot find the file specified&#8221;.<br />
When run them in a DOS Command Prompt both work - the path is set right.<br />
I am confused&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tabrez</title>
		<link>http://beans.seartipy.com/2006/08/29/develop-ruby-applications-using-scite-editor/#comment-902</link>
		<dc:creator>tabrez</dc:creator>
		<pubDate>Fri, 20 Oct 2006 06:47:06 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2006/08/29/develop-ruby-applications-using-scite-editor/#comment-902</guid>
		<description>Are you using SciTE under GNU/Linux or Windows?
Follow these steps:
Start the SciTE editor; go to View -&gt; Output; in the output window, type the command 'ri Kernel#gets' and see what result it generates. What happens when you type the 'irb' command?</description>
		<content:encoded><![CDATA[<p>Are you using SciTE under GNU/Linux or Windows?<br />
Follow these steps:<br />
Start the SciTE editor; go to View -> Output; in the output window, type the command &#8216;ri Kernel#gets&#8217; and see what result it generates. What happens when you type the &#8216;irb&#8217; command?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mihail</title>
		<link>http://beans.seartipy.com/2006/08/29/develop-ruby-applications-using-scite-editor/#comment-896</link>
		<dc:creator>mihail</dc:creator>
		<pubDate>Thu, 19 Oct 2006 20:10:34 +0000</pubDate>
		<guid isPermaLink="false">http://beans.seartipy.com/2006/08/29/develop-ruby-applications-using-scite-editor/#comment-896</guid>
		<description>I am having few problems with SciTE (version 1.67).
- irb command is not recognized in the ouptut winodw
- can' type anything in the DOS command window when it is opened via gets. 
Any help? 
    Thanks, Mihail</description>
		<content:encoded><![CDATA[<p>I am having few problems with SciTE (version 1.67).<br />
- irb command is not recognized in the ouptut winodw<br />
- can&#8217; type anything in the DOS command window when it is opened via gets.<br />
Any help?<br />
    Thanks, Mihail</p>
]]></content:encoded>
	</item>
</channel>
</rss>
