<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sean&#039;s Blog &#187; gem</title>
	<atom:link href="http://seanbehan.com/tag/gem/feed/" rel="self" type="application/rss+xml" />
	<link>http://seanbehan.com</link>
	<description>Web Programming, Ruby on Rails, Wordpress, PHP from Burlington, Vermont</description>
	<lastBuildDate>Wed, 18 Jan 2012 21:44:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Running Gem Server to View Docs for Ruby Libraries on Localhost</title>
		<link>http://seanbehan.com/ruby/running-gem-server-to-view-docs-for-ruby-libraries-on-localhost/</link>
		<comments>http://seanbehan.com/ruby/running-gem-server-to-view-docs-for-ruby-libraries-on-localhost/#comments</comments>
		<pubDate>Thu, 09 Sep 2010 17:58:56 +0000</pubDate>
		<dc:creator>bseanvt</dc:creator>
				<category><![CDATA[ruby]]></category>
		<category><![CDATA[gem]]></category>
		<category><![CDATA[localhost]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://seanbehan.com/?p=1177</guid>
		<description><![CDATA[gem server will boot up documentation on port 8808 by default pass it the -p flag followed by the port number to change. gem server -p3000]]></description>
			<content:encoded><![CDATA[<div style="height:33px;" class="really_simple_share robots-nocontent snap_nopreview"><div class="really_simple_share_facebook_like" style="width:px;">
				<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fseanbehan.com%2Fruby%2Frunning-gem-server-to-view-docs-for-ruby-libraries-on-localhost%2F&amp;layout=button_count&amp;show_faces=false&amp;width=&amp;action=like&amp;colorscheme=light&amp;send=false&amp;height=27" 
						scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:px; height:27px;" allowTransparency="true"></iframe>
				</div><div class="really_simple_share_twitter" style="width:px;">
					<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" 
						data-text="Running Gem Server to View Docs for Ruby Libraries on Localhost" data-url="http://seanbehan.com/ruby/running-gem-server-to-view-docs-for-ruby-libraries-on-localhost/" 
						data-via="" ></a> 
				</div></div>
		<div style="clear:both;"></div><pre class="wp-code-highlight prettyprint">
gem server
</pre>
<p>will boot up documentation on port 8808 by default pass it the -p flag followed by the port number to change. </p>
<pre class="wp-code-highlight prettyprint">
gem server -p3000
</pre>
]]></content:encoded>
			<wfw:commentRss>http://seanbehan.com/ruby/running-gem-server-to-view-docs-for-ruby-libraries-on-localhost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gem Information with Gem List</title>
		<link>http://seanbehan.com/programming/gem-information-with-gem-list/</link>
		<comments>http://seanbehan.com/programming/gem-information-with-gem-list/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 18:46:09 +0000</pubDate>
		<dc:creator>bseanvt</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[gem]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[version]]></category>

		<guid isPermaLink="false">http://seanbehan.com/?p=487</guid>
		<description><![CDATA[If you want to get version information about a gem the easiest way to do it is with this command gem list &#60;gem name&#62; For example gem list activemerchant will output the activemerchant versions I have installed. You can pass only part of the name like gem list a get the names of all gems [...]]]></description>
			<content:encoded><![CDATA[<div style="height:33px;" class="really_simple_share robots-nocontent snap_nopreview"><div class="really_simple_share_facebook_like" style="width:px;">
				<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fseanbehan.com%2Fprogramming%2Fgem-information-with-gem-list%2F&amp;layout=button_count&amp;show_faces=false&amp;width=&amp;action=like&amp;colorscheme=light&amp;send=false&amp;height=27" 
						scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:px; height:27px;" allowTransparency="true"></iframe>
				</div><div class="really_simple_share_twitter" style="width:px;">
					<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" 
						data-text="Gem Information with Gem List" data-url="http://seanbehan.com/programming/gem-information-with-gem-list/" 
						data-via="" ></a> 
				</div></div>
		<div style="clear:both;"></div><p>If you want to get version information about a gem the easiest way to do it is with this command</p>
<pre class="wp-code-highlight prettyprint">
gem list &lt;gem name&gt;
</pre>
<p>For example</p>
<pre class="wp-code-highlight prettyprint">
gem list activemerchant
</pre>
<p>will output the activemerchant versions I have installed. You can pass only part of the name like</p>
<pre class="wp-code-highlight prettyprint">
gem list a
</pre>
<p>get the names of all gems (and versions) that start with &#8220;a&#8221;. There are a lot more options so here is a link to the gem command reference http://rubygems.org/read/chapter/10</p>
<p>The commands here are useful if you&#8217;ve installed a gem but the version you&#8217;ve configured in your environment.rb file is different. To quickly grab the right version, this command is pretty handy.</p>
]]></content:encoded>
			<wfw:commentRss>http://seanbehan.com/programming/gem-information-with-gem-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

