<?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: Creating and Distributing your own gem: a quick rundown</title>
	<atom:link href="http://www.pathf.com/blogs/2009/01/creating-and-distributing-your-own-gem-a-quick-rundown/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pathf.com/blogs/2009/01/creating-and-distributing-your-own-gem-a-quick-rundown/</link>
	<description>Running commentary about agile development, user experience design and Ajax.</description>
	<lastBuildDate>Fri, 05 Mar 2010 19:33:43 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Akhil Bansal</title>
		<link>http://www.pathf.com/blogs/2009/01/creating-and-distributing-your-own-gem-a-quick-rundown/comment-page-1/#comment-5606</link>
		<dc:creator>Akhil Bansal</dc:creator>
		<pubDate>Wed, 14 Jan 2009 18:56:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=1357#comment-5606</guid>
		<description>Good article, Thanks</description>
		<content:encoded><![CDATA[<p>Good article, Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sharad Jain</title>
		<link>http://www.pathf.com/blogs/2009/01/creating-and-distributing-your-own-gem-a-quick-rundown/comment-page-1/#comment-5594</link>
		<dc:creator>Sharad Jain</dc:creator>
		<pubDate>Wed, 14 Jan 2009 04:41:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=1357#comment-5594</guid>
		<description>Patrick, thanks for stopping by. Correct, there are a few quirks with both, newgem and hoe. I also don&#039;t like that they create a runtime dependency on themselves eventhough generated gem do not need them. Do they? I hope, your gem doesn&#039;t create a dependency on itself ;-) And, I also like the github task that you provided. Will try it out. Thanks.</description>
		<content:encoded><![CDATA[<p>Patrick, thanks for stopping by. Correct, there are a few quirks with both, newgem and hoe. I also don&#8217;t like that they create a runtime dependency on themselves eventhough generated gem do not need them. Do they? I hope, your gem doesn&#8217;t create a dependency on itself <img src='http://www.pathf.com/blogs/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  And, I also like the github task that you provided. Will try it out. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ennuyer.net &#187; Blog Archive &#187; 2009-01-13 - Today’s Ruby/Rails Reading</title>
		<link>http://www.pathf.com/blogs/2009/01/creating-and-distributing-your-own-gem-a-quick-rundown/comment-page-1/#comment-5582</link>
		<dc:creator>Ennuyer.net &#187; Blog Archive &#187; 2009-01-13 - Today’s Ruby/Rails Reading</dc:creator>
		<pubDate>Tue, 13 Jan 2009 17:06:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=1357#comment-5582</guid>
		<description>[...] Creating and Distributing your own gem: a quick rundown [...]</description>
		<content:encoded><![CDATA[<p>[...] Creating and Distributing your own gem: a quick rundown [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Reagan</title>
		<link>http://www.pathf.com/blogs/2009/01/creating-and-distributing-your-own-gem-a-quick-rundown/comment-page-1/#comment-5560</link>
		<dc:creator>Patrick Reagan</dc:creator>
		<pubDate>Mon, 12 Jan 2009 21:22:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.pathf.com/blogs/?p=1357#comment-5560</guid>
		<description>I&#039;ve felt the same pain as you when creating Ruby gems that I want to distribute.  I liked newgem for a while since it didn&#039;t include as much cruft as either hoe or bones (when using the --simple option), but it still felt a little too heavyweight for me.

Since then, I set out to write a small command-line utility that would do the basics of building a gem directory structure that fit my needs and allow me to easily push to GitHub.  I call it &quot;simple-gem&quot;:

$ sudo gem install reagent-simple-gem --source=http://gems.github.com
$ simple-gem my_gem

Assuming that you&#039;re using GitHub for code hosting, you just need to generate the gemspec and push:

$ cd my_gem
$ rake github
$ git add . &amp;&amp; git commit -m &quot;Updated gemspec&quot; &amp;&amp; git push origin master

More info is available on GitHub:

http://github.com/reagent/simple-gem/tree/master/README.rdoc</description>
		<content:encoded><![CDATA[<p>I&#8217;ve felt the same pain as you when creating Ruby gems that I want to distribute.  I liked newgem for a while since it didn&#8217;t include as much cruft as either hoe or bones (when using the &#8211;simple option), but it still felt a little too heavyweight for me.</p>
<p>Since then, I set out to write a small command-line utility that would do the basics of building a gem directory structure that fit my needs and allow me to easily push to GitHub.  I call it &#8220;simple-gem&#8221;:</p>
<p>$ sudo gem install reagent-simple-gem &#8211;source=http://gems.github.com<br />
$ simple-gem my_gem</p>
<p>Assuming that you&#8217;re using GitHub for code hosting, you just need to generate the gemspec and push:</p>
<p>$ cd my_gem<br />
$ rake github<br />
$ git add . &amp;&amp; git commit -m &#8220;Updated gemspec&#8221; &amp;&amp; git push origin master</p>
<p>More info is available on GitHub:</p>
<p><a href="http://github.com/reagent/simple-gem/tree/master/README.rdoc" rel="nofollow">http://github.com/reagent/simple-gem/tree/master/README.rdoc</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.250 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-18 06:54:05 -->
