<?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: Canonical URLs with Rack and Heroku</title>
	<atom:link href="http://lostechies.com/jimmybogard/2010/09/24/canonical-urls-with-rack-and-heroku/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostechies.com/jimmybogard/2010/09/24/canonical-urls-with-rack-and-heroku/</link>
	<description>Strong opinions, weakly held</description>
	<lastBuildDate>Wed, 22 May 2013 13:39:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>By: Derick Bailey</title>
		<link>http://lostechies.com/jimmybogard/2010/09/24/canonical-urls-with-rack-and-heroku/#comment-3957</link>
		<dc:creator>Derick Bailey</dc:creator>
		<pubDate>Tue, 27 Sep 2011 03:19:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/09/23/canonical-urls-with-rack-and-heroku.aspx#comment-3957</guid>
		<description>thank you jimmy! just saved me hours of trying to figure this out :)</description>
		<content:encoded><![CDATA[<p>thank you jimmy! just saved me hours of trying to figure this out <img src='http://lostechies.com/jimmybogard/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dale Smith</title>
		<link>http://lostechies.com/jimmybogard/2010/09/24/canonical-urls-with-rack-and-heroku/#comment-2657</link>
		<dc:creator>Dale Smith</dc:creator>
		<pubDate>Sat, 25 Sep 2010 22:10:26 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/09/23/canonical-urls-with-rack-and-heroku.aspx#comment-2657</guid>
		<description>How to resolve problems running Sinatra 1.0 on Ruby 1.9.2 -p0:

I&#039;m running Ruby 1.9.2 on Windows 7.  When I tried to run through the Hello World example on the sinatra site, I got the following error:

C:/Ruby192/lib/ruby/gems/1.9.1/gems/sinatra-1.0/lib/sinatra/base.rb:753:in `read&#039;: Invalid argument - &lt;internal:lib/rubygems/custom_require&gt; (Errno::EINVAL)

Turns out this is a known issue with Sinatra 1.0 and will be fixed in the next release:

http://github.com/sinatra/sinatra/issues/issue/50

but in the meantime, you can edit base.rb in 

[ruby 1.9.2 root]\lib\ruby\gems\1.9.1\gems\sinatra-1.0\lib\sinatra

adding the following line to the CALLERS_TO_IGNORE variable:

/&lt;internal:/,          # ruby 1.9.2-p0 hacks

The link above shows exactly where to add it.  I added it to mine, and I&#039;m up and running now.</description>
		<content:encoded><![CDATA[<p>How to resolve problems running Sinatra 1.0 on Ruby 1.9.2 -p0:</p>
<p>I&#8217;m running Ruby 1.9.2 on Windows 7.  When I tried to run through the Hello World example on the sinatra site, I got the following error:</p>
<p>C:/Ruby192/lib/ruby/gems/1.9.1/gems/sinatra-1.0/lib/sinatra/base.rb:753:in `read&#8217;: Invalid argument &#8211; <internal:lib /rubygems/custom_require> (Errno::EINVAL)</p>
<p>Turns out this is a known issue with Sinatra 1.0 and will be fixed in the next release:</p>
<p><a href="http://github.com/sinatra/sinatra/issues/issue/50" rel="nofollow">http://github.com/sinatra/sinatra/issues/issue/50</a></p>
<p>but in the meantime, you can edit base.rb in </p>
<p>[ruby 1.9.2 root]\lib\ruby\gems\1.9.1\gems\sinatra-1.0\lib\sinatra</p>
<p>adding the following line to the CALLERS_TO_IGNORE variable:</p>
<p>/<internal:/,          # ruby 1.9.2-p0 hacks</p>
<p>The link above shows exactly where to add it.  I added it to mine, and I&#8217;m up and running now.</internal:lib></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vijay Santhanam</title>
		<link>http://lostechies.com/jimmybogard/2010/09/24/canonical-urls-with-rack-and-heroku/#comment-2656</link>
		<dc:creator>Vijay Santhanam</dc:creator>
		<pubDate>Fri, 24 Sep 2010 07:30:13 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/09/23/canonical-urls-with-rack-and-heroku.aspx#comment-2656</guid>
		<description>Thanks Jimmy, you make Heroku + Ruby + all these libraries sound like a lot of fun.

Any chance you can open source a demo website so we can see how you&#039;ve set stuff up with all the tech and gems.

</description>
		<content:encoded><![CDATA[<p>Thanks Jimmy, you make Heroku + Ruby + all these libraries sound like a lot of fun.</p>
<p>Any chance you can open source a demo website so we can see how you&#8217;ve set stuff up with all the tech and gems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Beckelman</title>
		<link>http://lostechies.com/jimmybogard/2010/09/24/canonical-urls-with-rack-and-heroku/#comment-2655</link>
		<dc:creator>Bill Beckelman</dc:creator>
		<pubDate>Fri, 24 Sep 2010 04:04:57 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/09/23/canonical-urls-with-rack-and-heroku.aspx#comment-2655</guid>
		<description>Thanks Jimmy. This has been on my list to figure out for a few days now. I can&#039;t believe how easy this stuff is with Sinatra and Heroku.</description>
		<content:encoded><![CDATA[<p>Thanks Jimmy. This has been on my list to figure out for a few days now. I can&#8217;t believe how easy this stuff is with Sinatra and Heroku.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
