<?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>Smørrebrød &#187; ruby</title>
	<atom:link href="http://blog.k-jahn.de/tag/ruby/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.k-jahn.de</link>
	<description>Aus der Rümpelkammer eines Wikingers</description>
	<lastBuildDate>Thu, 05 Jan 2012 20:27:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Ruby rockt!</title>
		<link>http://blog.k-jahn.de/2007/09/21/ruby-rockt/</link>
		<comments>http://blog.k-jahn.de/2007/09/21/ruby-rockt/#comments</comments>
		<pubDate>Fri, 21 Sep 2007 11:29:31 +0000</pubDate>
		<dc:creator>Karsten</dc:creator>
				<category><![CDATA[Eiberten]]></category>
		<category><![CDATA[Nerd-Kram]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://k-jahn.de/blog/wordpress/?p=42</guid>
		<description><![CDATA[Der Struts-Erfinder hat ein raus gehauen: He even went as far as to say that developing web applications in Java after working with Rails would probably not be a particularly pleasant experience for him. Der Artikel dazu ist definitiv lesenswert.]]></description>
			<content:encoded><![CDATA[<p>Der Struts-Erfinder hat ein raus gehauen:</p>
<blockquote><p>He even went as far as to say that developing web applications in Java after working with Rails would probably not be a particularly pleasant experience for him.</p></blockquote>
<p>Der <a HREF="http://www.loudthinking.com/posts/11-sun-surprises-at-railsconf-europe-2007">Artikel</a> dazu ist definitiv lesenswert.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.k-jahn.de/2007/09/21/ruby-rockt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Edelsteine und Indianer</title>
		<link>http://blog.k-jahn.de/2007/06/08/edelsteine-und-indianer/</link>
		<comments>http://blog.k-jahn.de/2007/06/08/edelsteine-und-indianer/#comments</comments>
		<pubDate>Fri, 08 Jun 2007 17:38:46 +0000</pubDate>
		<dc:creator>Karsten</dc:creator>
				<category><![CDATA[Eiberten]]></category>
		<category><![CDATA[Nerd-Kram]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://k-jahn.de/blog/wordpress/?p=19</guid>
		<description><![CDATA[Ich hab mich jetzt fast 2 Monate mal mehr mal weniger damit rumgeplagt eine Ruby on Rails Applikation unterm Apache auf Debian mit Confix laufen zu lassen. Jetzt hab ich&#8217;s endlich geschafft, darum will ich meine Ergebnisse mal hier posten&#8230; Ein genereller Tipp ist: Keine &#8220;puts&#8221; in den Quelltext. fcgi mag das nicht. Im confixx [...]]]></description>
			<content:encoded><![CDATA[<p>Ich hab mich jetzt fast 2 Monate mal mehr mal weniger damit rumgeplagt eine <a HREF="http://www.freudssofa.de">Ruby on Rails Applikation</a> unterm Apache auf Debian mit Confix laufen zu lassen. Jetzt hab ich&#8217;s endlich geschafft, darum will ich meine Ergebnisse mal hier posten&#8230; <span id="more-12"></span></p>
<p>Ein genereller Tipp ist: Keine &#8220;puts&#8221; in den Quelltext. fcgi mag das nicht.</p>
<p>Im confixx Admin die httpd Spezial zufügen:</p>
<blockquote><p><directory><br />
AllowOverride All<br />
Options +ExecCGI +FollowSymLinks +SymLinksIfOwnerMatch<br />
</directory></p></blockquote>
<p>Dann die Datei /etc/apache2/httpd.conf anpassen:</p>
<blockquote><p>LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so</p></blockquote>
<p>Die .htaccess:</p>
<blockquote><p># General Apache options<br />
AddHandler fastcgi-script fcg fcgi fpl<br />
AddHandler cgi-script .cgi<br />
Options +FollowSymLinks +ExecCGI</p>
<p>RewriteEngine On</p>
<p>RewriteRule ^$ index.html [QSA]<br />
RewriteRule ^([^.]+)$ $1.html [QSA]<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
#RewriteRule ^(.*)$ dispatch.cgi [QSA,L]<br />
RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]</p>
<p>ErrorDocument 500 &#8220;Application error &#8211; Rails application failed to start properly&#8221;</p></blockquote>
<p>Und die dispatch.fcgi:</p>
<blockquote><p>#!/usr/bin/ruby1.8<br />
#<br />
# You may specify the path to the FastCGI crash log (a log of unhandled<br />
# exceptions which forced the FastCGI instance to exit, great for debugging)<br />
# and the number of requests to process before running garbage collection.<br />
#<br />
# By default, the FastCGI crash log is RAILS_ROOT/log/fastcgi.crash.log<br />
# and the GC period is nil (turned off).  A reasonable number of requests<br />
# could range from 10-100 depending on the memory footprint of your app.<br />
#<br />
require File.dirname(__FILE__) + &#8220;/../config/environment&#8221;<br />
require &#8216;fcgi_handler&#8217;</p>
<p>RailsFCGIHandler.process!</p></blockquote>
<p><a HREF="http://www.technixblog.de/archives/linux/debian/tutorial-ruby-on-rails-fur-debian-sarge">Hier</a> ist eine ganz Beschreibung die recht gut ist.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.k-jahn.de/2007/06/08/edelsteine-und-indianer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hi, I&#8217;m Ruby on Rails</title>
		<link>http://blog.k-jahn.de/2007/05/30/hi-im-ruby-on-rails/</link>
		<comments>http://blog.k-jahn.de/2007/05/30/hi-im-ruby-on-rails/#comments</comments>
		<pubDate>Wed, 30 May 2007 20:25:26 +0000</pubDate>
		<dc:creator>Karsten</dc:creator>
				<category><![CDATA[Nerd-Kram]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://k-jahn.de/blog/wordpress/?p=15</guid>
		<description><![CDATA[Da gibt&#8217;s viele von. Die meisten sind lächerlich. Aber eigentlich auch ein bisschen witzig&#8230; Ruby on Rails vs PHP &#8211; RailsEnvy.com Commercial #2 Hier der Link zu den Machern.]]></description>
			<content:encoded><![CDATA[<p>Da gibt&#8217;s viele von. Die meisten sind lächerlich. Aber eigentlich auch ein bisschen witzig&#8230;<br />
<a HREF="http://www.youtube.com/watch?v=n1NVfDlU6yQ">Ruby on Rails vs PHP &#8211; RailsEnvy.com Commercial #2</a></p>
<p><a HREF="http://railsenvy.com/">Hier der Link</a> zu den Machern.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.k-jahn.de/2007/05/30/hi-im-ruby-on-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

