<?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"
	>
<channel>
	<title>Comments for All About Ruby</title>
	<atom:link href="http://allaboutruby.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://allaboutruby.wordpress.com</link>
	<description>Ruby newbie view on the web development using Ruby on Rails</description>
	<pubDate>Thu, 21 Aug 2008 16:20:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
		<item>
		<title>Comment on Installing Rails on Windows (step-by-step tutorial) by HansVDZ</title>
		<link>http://allaboutruby.wordpress.com/2006/01/09/installing-rails-on-windows-step-by-step-tutorial/#comment-10531</link>
		<dc:creator>HansVDZ</dc:creator>
		<pubDate>Wed, 20 Aug 2008 15:08:39 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/09/installing-rails-on-windows-step-by-step-tutorial/#comment-10531</guid>
		<description>1. change ‘index.html.erb’: add the following 2 lines just before link_to ‘Show’
  &#60;td&#62;&#60;%= story.id %&#62;&#60;/td&#62;
  &#60;td&#62;&#60;%= story.title %&#62;&#60;/td&#62;

2. replace ‘new.html.erb’ with this:
&#60;h1&#62;New story&#60;/h1&#62;

&#60;% form_for(@story) do &#124;f&#124; %&#62;
&#60;%= f.error_messages %&#62;
&#60;table&#62;
&#60;tr&#62;
&#60;td&#62;&#60;label for="story_title"&#62;Title&#60;/label&#62;:&#60;/td&#62;
&#60;td&#62;&#60;%= text_field 'story', 'title' %&#62;&#60;/td&#62;
&#60;/tr&#62;
&#60;tr&#62;
&#60;td&#62;&#60;%= f.submit "Create" %&#62;&#60;/td&#62;
&#60;/tr&#62;
&#60;/table&#62;
&#60;% end %&#62;

&#60;%= link_to 'Back', stories_path %&#62;

3. replace ‘edit.html.erb’ with this:
&#60;h1&#62;Editing story&#60;/h1&#62;

&#60;% form_for(@story) do &#124;f&#124; %&#62;
&#60;%= f.error_messages %&#62;
&#60;table&#62;
&#60;tr&#62;
&#60;td&#62;&#60;label for="story_title"&#62;Title&#60;/label&#62;:&#60;/td&#62;
&#60;td&#62;&#60;%= text_field 'story', 'title' %&#62;&#60;/td&#62;
&#60;/tr&#62;
&#60;tr&#62;
&#60;td&#62;&#60;%= f.submit "Update" %&#62;&#60;/td&#62;
&#60;/tr&#62;
&#60;/table&#62;
&#60;% end %&#62;

&#60;%= link_to 'Show', @story %&#62; &#124;
&#60;%= link_to 'Back', stories_path %&#62;

4. replace ’show.html.erb’ with this:
&#60;table&#62;
&#60;tr&#62;
&#60;td&#62;&#60;%= @story.id %&#62;&#60;/td&#62;
&#60;td&#62;&#60;%= @story.title %&#62;&#60;/td&#62;
&#60;/tr&#62;
&#60;/table&#62;
&#60;%= link_to 'Edit', edit_story_path(@story) %&#62; &#124;
&#60;%= link_to 'Back', stories_path %&#62;</description>
		<content:encoded><![CDATA[<p>1. change ‘index.html.erb’: add the following 2 lines just before link_to ‘Show’<br />
  &lt;td&gt;&lt;%= story.id %&gt;&lt;/td&gt;<br />
  &lt;td&gt;&lt;%= story.title %&gt;&lt;/td&gt;</p>
<p>2. replace ‘new.html.erb’ with this:<br />
&lt;h1&gt;New story&lt;/h1&gt;</p>
<p>&lt;% form_for(@story) do |f| %&gt;<br />
&lt;%= f.error_messages %&gt;<br />
&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;label for=&#8221;story_title&#8221;&gt;Title&lt;/label&gt;:&lt;/td&gt;<br />
&lt;td&gt;&lt;%= text_field &#8217;story&#8217;, &#8216;title&#8217; %&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;%= f.submit &#8220;Create&#8221; %&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;% end %&gt;</p>
<p>&lt;%= link_to &#8216;Back&#8217;, stories_path %&gt;</p>
<p>3. replace ‘edit.html.erb’ with this:<br />
&lt;h1&gt;Editing story&lt;/h1&gt;</p>
<p>&lt;% form_for(@story) do |f| %&gt;<br />
&lt;%= f.error_messages %&gt;<br />
&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;label for=&#8221;story_title&#8221;&gt;Title&lt;/label&gt;:&lt;/td&gt;<br />
&lt;td&gt;&lt;%= text_field &#8217;story&#8217;, &#8216;title&#8217; %&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;%= f.submit &#8220;Update&#8221; %&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;% end %&gt;</p>
<p>&lt;%= link_to &#8216;Show&#8217;, @story %&gt; |<br />
&lt;%= link_to &#8216;Back&#8217;, stories_path %&gt;</p>
<p>4. replace ’show.html.erb’ with this:<br />
&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;%= @story.id %&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;%= @story.title %&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;%= link_to &#8216;Edit&#8217;, edit_story_path(@story) %&gt; |<br />
&lt;%= link_to &#8216;Back&#8217;, stories_path %&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Rails on Windows (step-by-step tutorial) by Jef</title>
		<link>http://allaboutruby.wordpress.com/2006/01/09/installing-rails-on-windows-step-by-step-tutorial/#comment-10530</link>
		<dc:creator>Jef</dc:creator>
		<pubDate>Wed, 20 Aug 2008 14:42:34 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/09/installing-rails-on-windows-step-by-step-tutorial/#comment-10530</guid>
		<description>You can use:

'test1'
or 
"test2"</description>
		<content:encoded><![CDATA[<p>You can use:</p>
<p>&#8216;test1&#8242;<br />
or<br />
&#8220;test2&#8243;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Rails on Windows (step-by-step tutorial) by HansVDZ</title>
		<link>http://allaboutruby.wordpress.com/2006/01/09/installing-rails-on-windows-step-by-step-tutorial/#comment-10529</link>
		<dc:creator>HansVDZ</dc:creator>
		<pubDate>Wed, 20 Aug 2008 14:40:23 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/09/installing-rails-on-windows-step-by-step-tutorial/#comment-10529</guid>
		<description>Ok, my previous comment is not a great succes so I will try it again and now using de code-tags.
For issue 1.
&lt;code&gt;
  	
  	
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Ok, my previous comment is not a great succes so I will try it again and now using de code-tags.<br />
For issue 1.<br />
<code></p>
<p></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Rails on Windows (step-by-step tutorial) by HansVDZ</title>
		<link>http://allaboutruby.wordpress.com/2006/01/09/installing-rails-on-windows-step-by-step-tutorial/#comment-10528</link>
		<dc:creator>HansVDZ</dc:creator>
		<pubDate>Wed, 20 Aug 2008 14:25:26 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/09/installing-rails-on-windows-step-by-step-tutorial/#comment-10528</guid>
		<description>To show the id and title on the screen, follow next steps:
1. change 'index.html.erb': add the following 2 lines just before link_to 'Show'
  	
  	
2. replace 'new.html.erb' with this:
New story


  
  
    
      Title:
      
    
    
      
    
  




3. replace 'edit.html.erb' with this:
Editing story


  
  
    
      Title:
      
    
    
      
    
  


 &#124;


4. replace 'show.html.erb' with this:

  
    
    
  

 &#124;


It is not a nice layout, but it is just for showing the id and title.</description>
		<content:encoded><![CDATA[<p>To show the id and title on the screen, follow next steps:<br />
1. change &#8216;index.html.erb&#8217;: add the following 2 lines just before link_to &#8216;Show&#8217;</p>
<p>2. replace &#8216;new.html.erb&#8217; with this:<br />
New story</p>
<p>      Title:</p>
<p>3. replace &#8216;edit.html.erb&#8217; with this:<br />
Editing story</p>
<p>      Title:</p>
<p> |</p>
<p>4. replace &#8217;show.html.erb&#8217; with this:</p>
<p> |</p>
<p>It is not a nice layout, but it is just for showing the id and title.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby on rails by jeux de hasard online</title>
		<link>http://allaboutruby.wordpress.com/2006/01/03/ruby-on-rails/#comment-10526</link>
		<dc:creator>jeux de hasard online</dc:creator>
		<pubDate>Sat, 19 Jul 2008 05:13:16 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/03/ruby-on-rails/#comment-10526</guid>
		<description>&lt;strong&gt;jeux de hasard online...&lt;/strong&gt;

Formica totalling execute tidiness catalog organism ...</description>
		<content:encoded><![CDATA[<p><strong>jeux de hasard online&#8230;</strong></p>
<p>Formica totalling execute tidiness catalog organism &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Do you need instant rails? by senior life insurance policy</title>
		<link>http://allaboutruby.wordpress.com/2006/01/08/do-you-need-instant-rails/#comment-10524</link>
		<dc:creator>senior life insurance policy</dc:creator>
		<pubDate>Fri, 11 Jul 2008 15:59:20 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/08/do-you-need-instant-rails/#comment-10524</guid>
		<description>&lt;strong&gt;senior life insurance policy...&lt;/strong&gt;

frosted sneers interface.Ouagadougou:Togo entered ...</description>
		<content:encoded><![CDATA[<p><strong>senior life insurance policy&#8230;</strong></p>
<p>frosted sneers interface.Ouagadougou:Togo entered &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby Magick by california house insurance liability exclusions</title>
		<link>http://allaboutruby.wordpress.com/2006/01/05/ruby-magick/#comment-10523</link>
		<dc:creator>california house insurance liability exclusions</dc:creator>
		<pubDate>Thu, 10 Jul 2008 06:58:57 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/05/ruby-magick/#comment-10523</guid>
		<description>&lt;strong&gt;california house insurance liability exclusions...&lt;/strong&gt;

poetics Thelma workhorse taking shores equivalence?...</description>
		<content:encoded><![CDATA[<p><strong>california house insurance liability exclusions&#8230;</strong></p>
<p>poetics Thelma workhorse taking shores equivalence?&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Do you need instant rails? by california wild fire law suit farmers insurance</title>
		<link>http://allaboutruby.wordpress.com/2006/01/08/do-you-need-instant-rails/#comment-10522</link>
		<dc:creator>california wild fire law suit farmers insurance</dc:creator>
		<pubDate>Wed, 02 Jul 2008 20:27:23 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/08/do-you-need-instant-rails/#comment-10522</guid>
		<description>&lt;strong&gt;california wild fire law suit farmers insurance...&lt;/strong&gt;

Decker cicada shotgun Geary Malayizes?...</description>
		<content:encoded><![CDATA[<p><strong>california wild fire law suit farmers insurance&#8230;</strong></p>
<p>Decker cicada shotgun Geary Malayizes?&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby Blocks 101 by Adam</title>
		<link>http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-10520</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Mon, 16 Jun 2008 17:46:33 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/20/ruby-blocks-101/#comment-10520</guid>
		<description>Blocks are essentially lambda expressions, you'll have the pleasure of using higher-order functions in any functional language you touch.</description>
		<content:encoded><![CDATA[<p>Blocks are essentially lambda expressions, you&#8217;ll have the pleasure of using higher-order functions in any functional language you touch.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Rails on Windows (step-by-step tutorial) by csstrickery</title>
		<link>http://allaboutruby.wordpress.com/2006/01/09/installing-rails-on-windows-step-by-step-tutorial/#comment-10519</link>
		<dc:creator>csstrickery</dc:creator>
		<pubDate>Fri, 13 Jun 2008 18:16:45 +0000</pubDate>
		<guid isPermaLink="false">http://allaboutruby.wordpress.com/2006/01/09/installing-rails-on-windows-step-by-step-tutorial/#comment-10519</guid>
		<description>Hi,

When I type:

cd c:\ruby/firstpro I get a syntax error? And I cant restart my server again :(

The CMD for Ruby is called ruby.exe, and located in the bin folder?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>When I type:</p>
<p>cd c:\ruby/firstpro I get a syntax error? And I cant restart my server again <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>The CMD for Ruby is called ruby.exe, and located in the bin folder?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
