<?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>Ruby and Rails</title>
	<atom:link href="http://ruby.zigzo.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ruby.zigzo.com</link>
	<description>Just another Zigzo.com weblog</description>
	<lastBuildDate>Mon, 20 Jul 2009 05:09:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Finding, and Ordering Through an Association</title>
		<link>http://ruby.zigzo.com/2009/07/20/finding-ordering-through-association/</link>
		<comments>http://ruby.zigzo.com/2009/07/20/finding-ordering-through-association/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 04:59:51 +0000</pubDate>
		<dc:creator>Zigzo Zlinks Admin</dc:creator>
				<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://ruby.zigzo.com/?p=50</guid>
		<description><![CDATA[I ran into an issue today.  I have a Blog model that has_many feed_entries.
In plain english, I needed a list of blogs ordered by most recently updated feed.
My models look like this:
blog.rb
has_many :feed_entries

feed_entry.rb
belongs_to :blog
The query that makes it possible:
Blog.find(:all, :include =&#62; :feed_entries,  rder =&#62; 'feed_entries.published_at DESC')
:include makes this possible!
]]></description>
			<content:encoded><![CDATA[<p>I ran into an issue today.  I have a Blog model that has_many feed_entries.</p>
<p>In plain english, I needed a list of blogs ordered by most recently updated feed.</p>
<p>My models look like this:</p>
<pre lang="RUBY" line="1">blog.rb
has_many :feed_entries

feed_entry.rb
belongs_to :blog</pre>
<p>The query that makes it possible:</p>
<pre lang="RUBY" line="1">Blog.find(:all, :include =&gt; :feed_entries, <img src='http://ruby.zigzo.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> rder =&gt; 'feed_entries.published_at DESC')</pre>
<p>:include makes this possible!</p>
]]></content:encoded>
			<wfw:commentRss>http://ruby.zigzo.com/2009/07/20/finding-ordering-through-association/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Maps in Radiant Using</title>
		<link>http://ruby.zigzo.com/2009/04/20/google-maps-in-radiant-using/</link>
		<comments>http://ruby.zigzo.com/2009/04/20/google-maps-in-radiant-using/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 22:28:56 +0000</pubDate>
		<dc:creator>Zigzo Zlinks Admin</dc:creator>
				<category><![CDATA[Radiant CMS]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://ruby.zigzo.com/?p=44</guid>
		<description><![CDATA[This is how i got Google Maps working in Radiant CMS via the google_maps extension.
This one is pretty easy, but you should know that you HAVE to be using MySQL or PostgreSQL because google_maps uses the spatial adapter plugin which needs one of those 2.
First install the GeoRuby gem.  Careful this is case sensitive:
sudo gem [...]]]></description>
			<content:encoded><![CDATA[<p>This is how i got Google Maps working in Radiant CMS via the <a title="gmaps on github" href="http://github.com/rurounijones/radiant-google-maps-extension/tree" target="_blank">google_maps extension</a>.</p>
<p>This one is pretty easy, but you should know that you HAVE to be using MySQL or PostgreSQL because google_maps uses the spatial adapter plugin which needs one of those 2.</p>
<p>First install the GeoRuby gem.  Careful this is case sensitive:<br />
sudo gem install GeoRuby</p>
<p>Next, from within your Radiant project&#8217;s root folder, clone the extension from github:<br />
git clone git://github.com/rurounijones/radiant-google-maps-extension.git vendor/extensions/google_maps</p>
<p>Time to run the Rake tasks:<br />
rake radiant:extensions:google_maps:api<br />
rake production radiant:extensions:google_maps:migrate<br />
rake production radiant:extensions:google_maps:update</p>
<p>Edit config/gmaps_api_key.yml and add your own <a title="gmaps key" href="http://code.google.com/apis/maps/signup.html" target="_blank">Google Maps API key</a>.</p>
<p>Add this R tag inside your layout&#8217;s head tag:<br />
&lt;r:google_map:header /&gt;</p>
<p>Goto the Maps tab in the Radiant Admin and create a map</p>
<p>Create a new page and name it something.  In the body of that page add:<br />
&lt;r:google_map:generate div=&#8221;my_gmap_div_name&#8221; id=&#8221;1&#8243; /&gt;<br />
&lt;div id=&#8221;my_gmap_div_name&#8221; style=&#8221;height: 600px; width: 868px;&#8221;&gt;&lt;/div&gt;</p>
<p>That provides a div for the map to go in, and calls the google_map generate tag with Map id 1.  Look on the github page for more stuff.</p>
]]></content:encoded>
			<wfw:commentRss>http://ruby.zigzo.com/2009/04/20/google-maps-in-radiant-using/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Rmagick Gem on Ubuntu</title>
		<link>http://ruby.zigzo.com/2009/04/20/install-rmagick-gem-on-ubuntu/</link>
		<comments>http://ruby.zigzo.com/2009/04/20/install-rmagick-gem-on-ubuntu/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 16:39:25 +0000</pubDate>
		<dc:creator>Zigzo Zlinks Admin</dc:creator>
				<category><![CDATA[Gem]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://ruby.zigzo.com/?p=41</guid>
		<description><![CDATA[A super easy, no fat, no carbs, anti-oxidant filled three lines that had Rmagick working immediately for me:
sudo apt-get install imagemagick
sudo apt-get install libmagick9-dev
sudo gem install rmagick
]]></description>
			<content:encoded><![CDATA[<p>A super easy, no fat, no carbs, anti-oxidant filled three lines that had Rmagick working immediately for me:</p>
<pre lang="BASH">sudo apt-get install imagemagick
sudo apt-get install libmagick9-dev
sudo gem install rmagick</pre>
]]></content:encoded>
			<wfw:commentRss>http://ruby.zigzo.com/2009/04/20/install-rmagick-gem-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Install the &#8216;first-reorder&#8217; Extension for Radiant CMS</title>
		<link>http://ruby.zigzo.com/2009/04/20/how-to-install-the-first-reorder-extension-for-radiant-cms/</link>
		<comments>http://ruby.zigzo.com/2009/04/20/how-to-install-the-first-reorder-extension-for-radiant-cms/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 07:36:02 +0000</pubDate>
		<dc:creator>Zigzo Zlinks Admin</dc:creator>
				<category><![CDATA[Radiant CMS]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://ruby.zigzo.com/?p=38</guid>
		<description><![CDATA[Easy as pie.
First, make sure ray is installed&#8230; if it&#8217;s not, just run
./script/extension install ray
Second, install the extension!
rake ray:extension:install name=first-reorder
This reorder extension is pretty nice.  It provides an ajaxish layout for drag/drop reordering.
]]></description>
			<content:encoded><![CDATA[<p>Easy as pie.</p>
<p>First, make sure ray is installed&#8230; if it&#8217;s not, just run<br />
./script/extension install ray</p>
<p>Second, install the extension!<br />
rake ray:extension:install name=first-reorder</p>
<p>This reorder extension is pretty nice.  It provides an ajaxish layout for drag/drop reordering.</p>
]]></content:encoded>
			<wfw:commentRss>http://ruby.zigzo.com/2009/04/20/how-to-install-the-first-reorder-extension-for-radiant-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Install the News Extension for Radiant CMS</title>
		<link>http://ruby.zigzo.com/2009/04/20/how-to-install-the-news-extension-for-radiant-cms/</link>
		<comments>http://ruby.zigzo.com/2009/04/20/how-to-install-the-news-extension-for-radiant-cms/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 06:12:30 +0000</pubDate>
		<dc:creator>Zigzo Zlinks Admin</dc:creator>
				<category><![CDATA[Radiant CMS]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://ruby.zigzo.com/?p=32</guid>
		<description><![CDATA[The News extension for Radiant gives you the ability to post &#8220;News&#8221; items.  The new items are cool for mini updates on things, OR for really posting News  
I am going to go through installing the News extension on Radiant 0.7.1.
Based on the install info for News it says you need to install calendar_date_select [...]]]></description>
			<content:encoded><![CDATA[<p>The<a title="weee baby yeah!" href="http://github.com/screenconcept/radiant-news-extension/tree/master" target="_blank"> News extension for Radiant</a> gives you the ability to post &#8220;News&#8221; items.  The new items are cool for mini updates on things, OR for really posting News <img src='http://ruby.zigzo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I am going to go through installing the News extension on Radiant 0.7.1.</p>
<p><span id="more-32"></span>Based on the install info for News it says you need to install <a title="calendar shiz" href="http://code.google.com/p/calendardateselect/" target="_blank">calendar_date_select and points you at their page</a>.  Their google code page says you can simply do:</p>
<pre lang="BASH">sudo gem install calendar_date_select</pre>
<p>Yeah, so,  for some reason that doesn&#8217;t work. Skip that step and do the rest, we will address it later.</p>
<p>1)  Clone from github!</p>
<pre lang="BASH">git clone git://github.com/screenconcept/radiant-news-extension.git vendor/extensions/news</pre>
<p>2) Run the Migration and Update tasks</p>
<pre lang="BASH">rake production radiant:extensions:news:migrate
rake radiant:extensions:news:update</pre>
<p>Know that you can swap out &#8220;production&#8221; or add in whatever environment you want.</p>
<p>3) Finally we install the calendar_date_select <strong>PLUGIN</strong> not the gem! I could not get this thing working with the gem.</p>
<pre lang="BASH">git clone git://github.com/timcharper/calendar_date_select.git vendor/plugins/calendar_date_select &amp;&amp; rm -rf vendor/plugins/calendar_date_select/.git</pre>
<p>4) Weeeeee <img src='http://ruby.zigzo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://ruby.zigzo.com/2009/04/20/how-to-install-the-news-extension-for-radiant-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create a &#8216;Contact Us&#8217; Page in Radiant 0.7.1</title>
		<link>http://ruby.zigzo.com/2009/04/19/how-to-create-a-contact-us-page-in-radiant-071/</link>
		<comments>http://ruby.zigzo.com/2009/04/19/how-to-create-a-contact-us-page-in-radiant-071/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 02:49:14 +0000</pubDate>
		<dc:creator>Zigzo Zlinks Admin</dc:creator>
				<category><![CDATA[Radiant CMS]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://ruby.zigzo.com/?p=23</guid>
		<description><![CDATA[This post is more of a personal note to myself.  99% is copy/paste from either the Radiant wiki, or the Mailer extension&#8217;s github page.  I&#8217;m notating this because both the Radiant wiki and Mailer&#8217;s github page have instructions that confused the hell out of me so I&#8217;m consolidating it here after getting it [...]]]></description>
			<content:encoded><![CDATA[<p><em>This post is more of a personal note to myself.  99% is copy/paste from either the <a title="github page for radiant" href="http://wiki.github.com/radiant/radiant/mailer-extension">Radiant wiki</a>, or the <a href="http://github.com/radiant/radiant-mailer-extension/tree/master">Mailer extension&#8217;s github page</a>.  I&#8217;m notating this because both the Radiant wiki and Mailer&#8217;s github page have instructions that confused the hell out of me so I&#8217;m consolidating it here after getting it working.</em></p>
<p>This tutorial assumes you have a freshly bootstrapped Radiant installation.  Let&#8217;s Go!<span id="more-23"></span></p>
<p>1) I like the <strong>Ray extension</strong> for installing stuff so first we install Ray:</p>
<pre lang="BASH">me@coffee-bean:~/railz/radiant$ ./script/extension install ray</pre>
<p>2) After Ray installs, we can easily use it to install the Mailer extension:</p>
<pre lang="BASH">rake ray:extension:install name=mailer</pre>
<p>3) After the Mailer extension is installed, we have to modify &#8216;config/environment.rb&#8217; so that it is no longer excluding the ActionMailer framework.  Find the line &#8216;config.frameworks -= [ :action_mailer ]&#8216; and change it to just &#8216;config.frameworks -= []&#8216;.</p>
<p>While <span>environment</span>.rb is open, we need to make one additional change.  We need to add our SMTP settings.</p>
<p>Find the line ResponseCache.defaults[:logger] = ActionController::Base.logger.  If you have not modified enviornment.rb before this time, then it should be Line 84.  Below that line but before the next &#8216;end&#8217; add the following:</p>
<pre lang="RAILS">ActionMailer::Base.smtp_settings = {
:address =&gt; "smtp.domain.com",
:domain =&gt; "domain.com",
:user_name =&gt; "user@domain.com",
:password =&gt; "password",
:authentication =&gt; :login
}</pre>
<p>4) Create a child off of your Home Page in the Radiant Admin and called it &#8220;Contact Us&#8221;</p>
<p>5) Open the &#8220;Contact Us&#8221; page and create 2 parts.  Name the first part &#8216;mailer&#8217;.  Name the second part &#8216;email&#8217;.<br />
The &#8216;mailer&#8217; part holds our mail config stuff.<br />
The &#8216;email&#8217; part is the template for the email that is sent out.  This can be named &#8216;email_html&#8217; if you feel like adding html to the body of your email.  &#8216;email_html&#8217; also supports Textile and Markdown.<br />
The &#8216;body&#8217; part (body is there by default in any page) is where the actual mailer form will go.</p>
<p>6) Put this in the &#8216;email&#8217; part:</p>
<pre lang="RAILS">Name From: &lt;r:mailer:get name="name"/&gt;
Email From: &lt;r:mailer:get name="email"/&gt;
Body Message:
&lt;r:mailer:get name="message"/&gt;</pre>
<p>7) Put this in the &#8216;mailer&#8217; part, but <strong>NOTE this is YAML so indentation matters</strong> (2 spaces):</p>
<pre lang="RAILS">subject: "Sent from your contact us form"
redirect_to: /contact/thanks-for-contacting-us
from_field: email
recipients:
  - you@example.com</pre>
<p>Side note 2, the redirect_to is where the user is sent After submitting the form. Obviously, if you set this to some page, you will need to create that page.</p>
<p> <img src='http://ruby.zigzo.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Put this in the &#8216;body&#8217; part (or whatever part you want the actual form to live in):</p>
<pre lang="RAILS">&lt;r:mailer:form name="contact"&gt;
&lt;fieldset&gt;
&lt;legend&gt;Enter your contact information and message.&lt;/legend&gt;
&lt;r:text name="name"/&gt; &lt;label for="name"&gt;Name&lt;/label&gt;&lt;br&gt;
&lt;r:text name="email"/&gt; &lt;label for="email"&gt;Email&lt;/label&gt;&lt;br&gt;
&lt;label for="message"&gt;Message&lt;/label&gt;&lt;br&gt;
&lt;r:textarea name="message"/&gt;&lt;br&gt;
&lt;input type="submit" value="Send"&gt;
&lt;/fieldset&gt;
&lt;/r:mailer:form&gt;</pre>
<p>9) Profit!  Try it out.</p>
]]></content:encoded>
			<wfw:commentRss>http://ruby.zigzo.com/2009/04/19/how-to-create-a-contact-us-page-in-radiant-071/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Install the WYMeditor Extension for Radiant CMS in 3 Steps</title>
		<link>http://ruby.zigzo.com/2009/04/19/how-to-install-the-wymeditor-extension-for-radiant-cms-in-3-steps/</link>
		<comments>http://ruby.zigzo.com/2009/04/19/how-to-install-the-wymeditor-extension-for-radiant-cms-in-3-steps/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 04:52:36 +0000</pubDate>
		<dc:creator>Zigzo Zlinks Admin</dc:creator>
				<category><![CDATA[Radiant CMS]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://ruby.zigzo.com/?p=18</guid>
		<description><![CDATA[WYMeditor is a really cool wysiwyg-ish editor &#8212; well technically it&#8217;s a WYSIWYM  (What You See Is What You Mean).
It just so happens that a gentleman named Benny Degezelle has created an extension for Radiant CMS.
At the time of this writing I&#8217;ve installed this bad boy on Radiant CMS 0.7.1.
FIRST
Assuming that you have an already [...]]]></description>
			<content:encoded><![CDATA[<p>WYMeditor is a really cool wysiwyg-ish editor &#8212; well technically it&#8217;s a WYSIWYM  (What You See Is What You Mean).</p>
<p>It just so happens that a gentleman named Benny Degezelle has created an extension for Radiant CMS.</p>
<p>At the time of this writing I&#8217;ve installed this bad boy on Radiant CMS 0.7.1.</p>
<p><strong>FIRST</strong></p>
<p>Assuming that you have an already bootstrapped (aka &#8216;rake production db:bootstrap&#8217;) installation of Radiant CMS you should first clone the extension from GitHub while in your application&#8217;s home directory:</p>
<pre lang="BASH">me@world:/www/radiant.domain.net$ git clone git://github.com/jomz/radiant-wym-editor-filter-extension.git vendor/extensions/wym_editor_filter</pre></p>
<p>The command above will clone it to /vendor/extensions/wym_editor_filter</p>
<p><strong>SECOND</strong></p>
<p>Run the Install rake task!</p>
<pre lang="BASH">me@world:/www/radiant.domain.net$ rake radiant:extensions:wym_editor_filter:install</pre></p>
<p><strong>THIRD</strong></p>
<p>Run the Update rake task just to be safe.  You can run this at a later point in time to update, obviously.</p>
<pre lang="BASH">me@world-www:/www/radiant.domain.net$ rake radiant:extensions:wym_editor_filter:update</pre></p>
]]></content:encoded>
			<wfw:commentRss>http://ruby.zigzo.com/2009/04/19/how-to-install-the-wymeditor-extension-for-radiant-cms-in-3-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Feedzirra and How I Installed It</title>
		<link>http://ruby.zigzo.com/2009/02/15/feedzirra-installation-errors/</link>
		<comments>http://ruby.zigzo.com/2009/02/15/feedzirra-installation-errors/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 18:58:18 +0000</pubDate>
		<dc:creator>Zigzo Zlinks Admin</dc:creator>
				<category><![CDATA[Gem]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[feedzirra]]></category>
		<category><![CDATA[github]]></category>

		<guid isPermaLink="false">http://ruby.zigzo.com/?p=12</guid>
		<description><![CDATA[I&#8217;m an Ubuntu user and wanted to give the Feedzirra gem a shot and play with some RSS feeds today but unfortunately I ran into a few problems &#8212; which were CAKE to fix thanks to apt-get and hopefully this post will save you some time!
So, according to paul dix, to get this baby installed [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m an Ubuntu user and wanted to give the <a title="pizzaul my nizzaul" href="http://github.com/pauldix/feedzirra/tree/master" target="_blank">Feedzirra gem</a> a shot and play with some RSS feeds today but unfortunately I ran into a few problems &#8212; which were CAKE to fix thanks to apt-get and hopefully this post will save you some time!<span id="more-12"></span></p>
<p>So, according to <a title="pauly paul paul" href="http://github.com/pauldix/feedzirra/tree/master" target="_blank">paul dix</a>, to get this baby installed you need to run:</p>
<pre lang="BASH">io@crazo:~$ sudo gem install pauldix-feedzirra</pre>
<p>If that works, please carry on with life and have some funs with RSS.  If you get the following error the fix MIGHT be as simple as installing libcurl3-dev:</p>
<pre lang="BASH">io@crazo:~$ sudo gem install pauldix-feedzirra
Building native extensions.  This could take a while...
ERROR:  Error installing pauldix-feedzirra:
	ERROR: Failed to build gem native extension.

/usr/bin/ruby1.8 extconf.rb install pauldix-feedzirra
checking for curl-config... no
checking for main() in -lcurl... no
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers.  Check the mkmf.log file for more
details.  You may need configuration options.

Provided configuration options:
	--with-opt-dir
	--without-opt-dir
	--with-opt-include
	--without-opt-include=${opt-dir}/include
	--with-opt-lib
	--without-opt-lib=${opt-dir}/lib
	--with-make-prog
	--without-make-prog
	--srcdir=.
	--curdir
	--ruby=/usr/bin/ruby1.8
	--with-curl-dir
	--without-curl-dir
	--with-curl-include
	--without-curl-include=${curl-dir}/include
	--with-curl-lib
	--without-curl-lib=${curl-dir}/lib
	--with-curllib
	--without-curllib
extconf.rb:9:   Can't find libcurl or curl/curl.h (RuntimeError)

  Try passing --with-curl-dir or --with-curl-lib and --with-curl-include
  options to extconf.

Gem files will remain installed in /usr/lib/ruby/gems/1.8/gems/taf2-curb-0.2.7 for inspection.
Results logged to /usr/lib/ruby/gems/1.8/gems/taf2-curb-0.2.7/ext/gem_make.out</pre>
<p>After reading that butt load of output i noticed this line:</p>
<pre lang="BASH">extconf.rb:9:   Can't find libcurl or curl/curl.h (RuntimeError)</pre>
<p>Two flags here:  1.  the bitching about curl makes me think i don&#8217;t have curl installed and 2. curl.h = header and normally the header stuff is in the dev package so I should try that out.</p>
<pre lang="BASH">io@crazo:~$ sudo apt-get install libcurl3-dev</pre>
<p>Lots of other stuff was installed with this:</p>
<pre lang="BASH">Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting libcurl4-openssl-dev instead of libcurl3-dev
The following packages were automatically installed and are no longer required:
  mplayer-skins mplayer libglide2 libggi2 libgii1 libgii1-target-x
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
  comerr-dev libcurl4-openssl-dev libidn11-dev libkadm55 libkrb5-dev libldap2-dev libssl-dev
Suggested packages:
  libcurl3-dbg krb5-doc
The following NEW packages will be installed:
  comerr-dev libcurl4-openssl-dev libidn11-dev libkadm55 libkrb5-dev libldap2-dev libssl-dev
0 upgraded, 7 newly installed, 0 to remove and 0 not upgraded.
Need to get 4568kB of archives.
After this operation, 12.8MB of additional disk space will be used.
Do you want to continue [Y/n]? Y
Get:1 http://us.archive.ubuntu.com intrepid-updates/main libssl-dev 0.9.8g-10.1ubuntu2.1 [1981kB]
Get:2 http://us.archive.ubuntu.com intrepid/main libidn11-dev 1.8+20080606-1 [574kB]
Get:3 http://us.archive.ubuntu.com intrepid/main libkadm55 1.6.dfsg.4~beta1-3 [151kB]
Get:4 http://us.archive.ubuntu.com intrepid/main comerr-dev 2.1-1.41.3-1ubuntu1 [41.6kB]
Get:5 http://us.archive.ubuntu.com intrepid/main libkrb5-dev 1.6.dfsg.4~beta1-3 [92.1kB]
Get:6 http://us.archive.ubuntu.com intrepid-updates/main libldap2-dev 2.4.11-0ubuntu6.1 [824kB]
Get:7 http://us.archive.ubuntu.com intrepid/main libcurl4-openssl-dev 7.18.2-1ubuntu4 [904kB]
Fetched 4568kB in 24s (184kB/s)
Selecting previously deselected package libssl-dev.
(Reading database ... 192128 files and directories currently installed.)
Unpacking libssl-dev (from .../libssl-dev_0.9.8g-10.1ubuntu2.1_i386.deb) ...
Selecting previously deselected package libidn11-dev.
Unpacking libidn11-dev (from .../libidn11-dev_1.8+20080606-1_i386.deb) ...
Selecting previously deselected package libkadm55.
Unpacking libkadm55 (from .../libkadm55_1.6.dfsg.4~beta1-3_i386.deb) ...
Selecting previously deselected package comerr-dev.
Unpacking comerr-dev (from .../comerr-dev_2.1-1.41.3-1ubuntu1_i386.deb) ...
Selecting previously deselected package libkrb5-dev.
Unpacking libkrb5-dev (from .../libkrb5-dev_1.6.dfsg.4~beta1-3_i386.deb) ...
Selecting previously deselected package libldap2-dev.
Unpacking libldap2-dev (from .../libldap2-dev_2.4.11-0ubuntu6.1_i386.deb) ...
Selecting previously deselected package libcurl4-openssl-dev.
Unpacking libcurl4-openssl-dev (from .../libcurl4-openssl-dev_7.18.2-1ubuntu4_i386.deb) ...
Processing triggers for man-db ...
Processing triggers for doc-base ...
Processing 2 added doc-base file(s)...
Registering documents with scrollkeeper...
Setting up libssl-dev (0.9.8g-10.1ubuntu2.1) ...
Setting up libidn11-dev (1.8+20080606-1) ...

Setting up libkadm55 (1.6.dfsg.4~beta1-3) ...

Setting up comerr-dev (2.1-1.41.3-1ubuntu1) ...

Setting up libkrb5-dev (1.6.dfsg.4~beta1-3) ...
Setting up libldap2-dev (2.4.11-0ubuntu6.1) ...
Setting up libcurl4-openssl-dev (7.18.2-1ubuntu4) ...

Processing triggers for libc6 ...
ldconfig deferred processing now taking place
io@crazo:~$</pre>
<p>Now let&#8217;s try feedzirra again:</p>
<pre lang="BASH">io@crazo:~$ sudo gem install pauldix-feedzirra
Building native extensions.  This could take a while...
Successfully installed taf2-curb-0.2.7
Successfully installed pauldix-feedzirra-0.0.1
2 gems installed
Installing ri documentation for taf2-curb-0.2.7...
Installing ri documentation for pauldix-feedzirra-0.0.1...
Installing RDoc documentation for taf2-curb-0.2.7...
Installing RDoc documentation for pauldix-feedzirra-0.0.1...</pre>
<p>Bam! It&#8217;s in and installed the correct fork of curb (<a title="taf2 baby" href="http://github.com/taf2/curb/tree/master" target="_blank">taf2-curb</a>).</p>
<p><a title="woop woop pull ova that gem too phat" href="/2009/02/15/install-gems-from-github/" target="_self">Side note:  In order to install gems from GitHub you need to add GitHub as a gem source.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ruby.zigzo.com/2009/02/15/feedzirra-installation-errors/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Install Gems from GitHub</title>
		<link>http://ruby.zigzo.com/2009/02/15/install-gems-from-github/</link>
		<comments>http://ruby.zigzo.com/2009/02/15/install-gems-from-github/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 18:56:21 +0000</pubDate>
		<dc:creator>Zigzo Zlinks Admin</dc:creator>
				<category><![CDATA[Gem]]></category>
		<category><![CDATA[gems]]></category>
		<category><![CDATA[github]]></category>

		<guid isPermaLink="false">http://ruby.zigzo.com/?p=13</guid>
		<description><![CDATA[I&#8217;ve seen a few people confused by this, and I was stumped back in the day SO:
FYI, if you want to install gems from GitHub you need to add it as a source!
How?  Easy!
sudo gem sources -a http://gems.github.com
Now you can install any gem hosted on GitHub with something like:
sudo gem install yo-mama
One other thing [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve seen a few people confused by this, and I was stumped back in the day SO:</p>
<p><strong>FYI, if you want to install gems from GitHub you need to add it as a source!</strong></p>
<p>How?  Easy!</p>
<pre lang="BASH">sudo gem sources -a http://gems.github.com</pre>
<p>Now you can install any gem hosted on GitHub with something like:</p>
<pre lang="BASH">sudo gem install yo-mama</pre>
<p>One other thing to note.  Gem names when installing from GitHub are formatted as: username-projectname</p>
<p>So if you were looking @ user &#8220;billybob&#8221; and he forked a gem/project called &#8220;fishface&#8221;&#8230; the way you install would be:</p>
<pre lang="BASH">sudo gem install billybob-fishface</pre>
]]></content:encoded>
			<wfw:commentRss>http://ruby.zigzo.com/2009/02/15/install-gems-from-github/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RailsCollab</title>
		<link>http://ruby.zigzo.com/2009/02/06/railscollab/</link>
		<comments>http://ruby.zigzo.com/2009/02/06/railscollab/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 00:12:45 +0000</pubDate>
		<dc:creator>Zigzo Zlinks Admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[railscollab]]></category>
		<category><![CDATA[sendmail]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://ruby.zigzo.com/?p=9</guid>
		<description><![CDATA[If you are using RailsCollab on Ubuntu and emails are not working, check the config and make sure the path to sendmail is /usr/sbin/sendmail .  This tripped me up because the default path to sendmail is /usr/bin/sendmail and i hardly noticed it was wrong!
Postfix in Ubuntu = /usr/sbin/sendmail
]]></description>
			<content:encoded><![CDATA[<p>If you are using <a title="rails collab @ git" href="http://github.com/jamesu/railscollab/tree/master" target="_blank">RailsCollab</a> on Ubuntu and emails are not working, check the config and make sure the path to sendmail is /usr/<strong>sbin</strong>/sendmail .  This tripped me up because the default path to sendmail is /usr/bin/sendmail and i hardly noticed it was wrong!</p>
<p>Postfix in Ubuntu = /usr/sbin/sendmail</p>
]]></content:encoded>
			<wfw:commentRss>http://ruby.zigzo.com/2009/02/06/railscollab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
