<?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: Create and deploy command line apps with RubyGems</title>
	<atom:link href="http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/feed/" rel="self" type="application/rss+xml" />
	<link>http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/</link>
	<description>Ruby makes Rails, Javascript makes Ajax, Dr Nic makes Magic</description>
	<lastBuildDate>Mon, 15 Mar 2010 20:10:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ben</title>
		<link>http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/comment-page-1/#comment-99787</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Wed, 25 Jun 2008 14:43:52 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/#comment-99787</guid>
		<description>Hi Dr Nic

Your articles on RubyGems has been really useful and informative.  I&#039;ve written my own article which I hope answers the .hoerc file questions:

http://blog.emson.co.uk/2008/06/an-almost-fix-for-creating-rubygems-on-windows/

Keep up the good work,
Ben...</description>
		<content:encoded><![CDATA[<p>Hi Dr Nic</p>
<p>Your articles on RubyGems has been really useful and informative.  I&#8217;ve written my own article which I hope answers the .hoerc file questions:</p>
<p><a href="http://blog.emson.co.uk/2008/06/an-almost-fix-for-creating-rubygems-on-windows/" rel="nofollow">http://blog.emson.co.uk/2008/06/an-almost-fix-for-creating-rubygems-on-windows/</a></p>
<p>Keep up the good work,<br />
Ben&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Emson&#8230; &#187; Blog Archive &#187; An Almost Fix for Creating RubyGems on Windows</title>
		<link>http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/comment-page-1/#comment-99780</link>
		<dc:creator>Emson&#8230; &#187; Blog Archive &#187; An Almost Fix for Creating RubyGems on Windows</dc:creator>
		<pubDate>Wed, 25 Jun 2008 14:21:39 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/#comment-99780</guid>
		<description>[...] I also wanted the structure of the application to follow a standard structure and I didn&#8217;t want to put &#8216;.&#8217; into my path, for security reasons. Dr Nic came to the rescue with a couple of excellent articles describing how to create gems using newgem and specifically command-line apps as gems. [...]</description>
		<content:encoded><![CDATA[<p>[...] I also wanted the structure of the application to follow a standard structure and I didn&#8217;t want to put &#8216;.&#8217; into my path, for security reasons. Dr Nic came to the rescue with a couple of excellent articles describing how to create gems using newgem and specifically command-line apps as gems. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dr Nic</title>
		<link>http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/comment-page-1/#comment-36753</link>
		<dc:creator>Dr Nic</dc:creator>
		<pubDate>Tue, 10 Jul 2007 05:43:44 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/#comment-36753</guid>
		<description>@Gregory Borenstein [&lt;a href=&quot;http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/#comment-36730&quot; rel=&quot;nofollow&quot;&gt;via&lt;/a&gt;] - in the latest version of newgem and Hoe you don&#039;t need to specify the bins; only that you add them to your Manifest.txt as normal. If they are in the bin folder, they will be picked up as applications.</description>
		<content:encoded><![CDATA[<p>@Gregory Borenstein [<a href="http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/#comment-36730" rel="nofollow">via</a>] &#8211; in the latest version of newgem and Hoe you don&#8217;t need to specify the bins; only that you add them to your Manifest.txt as normal. If they are in the bin folder, they will be picked up as applications.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gregory Borenstein</title>
		<link>http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/comment-page-1/#comment-36730</link>
		<dc:creator>Gregory Borenstein</dc:creator>
		<pubDate>Tue, 10 Jul 2007 00:37:19 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/#comment-36730</guid>
		<description>Never mind! I just added a new BIN=&quot;the_name_of_my_bin_script&quot; to the rakefile right above the AUTHOR, EMAIL, etc. constants and it started working. The one other piece, at least for me, was to remember to include my bin script in the Manifest.txt.</description>
		<content:encoded><![CDATA[<p>Never mind! I just added a new BIN=&#8221;the_name_of_my_bin_script&#8221; to the rakefile right above the AUTHOR, EMAIL, etc. constants and it started working. The one other piece, at least for me, was to remember to include my bin script in the Manifest.txt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gregory Borenstein</title>
		<link>http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/comment-page-1/#comment-36726</link>
		<dc:creator>Gregory Borenstein</dc:creator>
		<pubDate>Tue, 10 Jul 2007 00:15:44 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/#comment-36726</guid>
		<description>Likewise here, I&#039;ve got 0.11.0, the most recent version according to rubyforge, and am having no luck with finding a BIN constant in the rake file or otherwise getting my scripts in /bin to run...</description>
		<content:encoded><![CDATA[<p>Likewise here, I&#8217;ve got 0.11.0, the most recent version according to rubyforge, and am having no luck with finding a BIN constant in the rake file or otherwise getting my scripts in /bin to run&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Orion</title>
		<link>http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/comment-page-1/#comment-23808</link>
		<dc:creator>Orion</dc:creator>
		<pubDate>Fri, 11 May 2007 21:32:41 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/#comment-23808</guid>
		<description>Two things:

I am using a newer version of newgem (0.8.1).  With that version I do not see the BIN array in the rake file.

If I have a gem I already created with newgem but did not add the binaries at the time of creating the gem.  How would I add the binaries to this gem.</description>
		<content:encoded><![CDATA[<p>Two things:</p>
<p>I am using a newer version of newgem (0.8.1).  With that version I do not see the BIN array in the rake file.</p>
<p>If I have a gem I already created with newgem but did not add the binaries at the time of creating the gem.  How would I add the binaries to this gem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dr Nic &#187; What&#8217;s a hoe?</title>
		<link>http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/comment-page-1/#comment-660</link>
		<dc:creator>Dr Nic &#187; What&#8217;s a hoe?</dc:creator>
		<pubDate>Mon, 13 Nov 2006 12:39:02 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/#comment-660</guid>
		<description>[...] The New Gem Generator rocks. Type newgem &lt;gem_name&gt; and you get all standard scaffolding for a gem. They look just like plugins, or vice versa. And the -b option bangs out new command line apps. Sweet. [...]</description>
		<content:encoded><![CDATA[<p>[...] The New Gem Generator rocks. Type newgem &lt;gem_name&gt; and you get all standard scaffolding for a gem. They look just like plugins, or vice versa. And the -b option bangs out new command line apps. Sweet. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/comment-page-1/#comment-443</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Thu, 19 Oct 2006 18:33:18 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/#comment-443</guid>
		<description>Great stuff! Thanks for this!</description>
		<content:encoded><![CDATA[<p>Great stuff! Thanks for this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Create and deploy command line apps with RubyGems at There was Code; Then there was AJAX!</title>
		<link>http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/comment-page-1/#comment-433</link>
		<dc:creator>Create and deploy command line apps with RubyGems at There was Code; Then there was AJAX!</dc:creator>
		<pubDate>Thu, 19 Oct 2006 00:31:51 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/#comment-433</guid>
		<description>[...] RubyGems have many things going for them, but hidden in the back, in no way obvious as to its existence nor how to use it, is my favourite feature: command line executables that are platform-neutral.read more&#160;&#124;&#160;digg story  Share and Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages. [...]</description>
		<content:encoded><![CDATA[<p>[...] RubyGems have many things going for them, but hidden in the back, in no way obvious as to its existence nor how to use it, is my favourite feature: command line executables that are platform-neutral.read more&nbsp;|&nbsp;digg story  Share and Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Criando pacotes Ruby com o New Gem Generator &#171; Lauro Moura</title>
		<link>http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/comment-page-1/#comment-432</link>
		<dc:creator>Criando pacotes Ruby com o New Gem Generator &#171; Lauro Moura</dc:creator>
		<pubDate>Thu, 19 Oct 2006 00:07:12 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/2006/10/18/create-and-deploy-command-line-apps-with-rubygems/#comment-432</guid>
		<description>[...] Usando o New Gem Generator, o trabalho de produzir novos pacotes &#8220;gem&#8221; praticamente desaparece. Há um pequeno tutorial nesse link, mas aqui vai o &#8220;básico do básico&#8221;: [...]</description>
		<content:encoded><![CDATA[<p>[...] Usando o New Gem Generator, o trabalho de produzir novos pacotes &#8220;gem&#8221; praticamente desaparece. Há um pequeno tutorial nesse link, mas aqui vai o &#8220;básico do básico&#8221;: [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
