<?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 on: How are website with Ruby on Rails built?</title>
	<atom:link href="http://www.freezzo.com/2008/05/31/how-are-website-with-ruby-on-rails-built/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.freezzo.com/2008/05/31/how-are-website-with-ruby-on-rails-built/</link>
	<description>A blog about web development, especially ruby on rails.</description>
	<pubDate>Wed, 07 Jan 2009 13:17:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Danny Hawkins</title>
		<link>http://www.freezzo.com/2008/05/31/how-are-website-with-ruby-on-rails-built/#comment-46</link>
		<dc:creator>Danny Hawkins</dc:creator>
		<pubDate>Wed, 18 Jun 2008 12:22:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.freezzo.com/2008/05/31/how-are-website-with-ruby-on-rails-built/#comment-46</guid>
		<description>You can use a controller to handle normal pages. For example in routes add:

map.connect '*path', :controller =&#62; 'pages', :action =&#62; 'show'

Then add a pages controller:

class PagesController  render_path
  end
end

Then when you call http://www.yoururl.com/pages/test/one it will render the template app/views/pages/test/one http://www.yoururl.com/pages/about_us would render app/views/pages/about_us</description>
		<content:encoded><![CDATA[<p>You can use a controller to handle normal pages. For example in routes add:</p>
<p>map.connect &#8216;*path&#8217;, :controller =&gt; &#8216;pages&#8217;, :action =&gt; &#8217;show&#8217;</p>
<p>Then add a pages controller:</p>
<p>class PagesController  render_path<br />
  end<br />
end</p>
<p>Then when you call <a href="http://www.yoururl.com/pages/test/one" rel="nofollow">http://www.yoururl.com/pages/test/one</a> it will render the template app/views/pages/test/one <a href="http://www.yoururl.com/pages/about_us" rel="nofollow">http://www.yoururl.com/pages/about_us</a> would render app/views/pages/about_us</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: reddy a</title>
		<link>http://www.freezzo.com/2008/05/31/how-are-website-with-ruby-on-rails-built/#comment-31</link>
		<dc:creator>reddy a</dc:creator>
		<pubDate>Tue, 03 Jun 2008 12:30:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.freezzo.com/2008/05/31/how-are-website-with-ruby-on-rails-built/#comment-31</guid>
		<description>Hi,

I have done this on hostingrails.com, you put these files in public_html directory, then create a sub-domain like yourapp.yourdomain.com.

My customer updates the static files using front page, the ruby on rails application files sit in their application folder. One drawback is that I had to copy some of the style sheet info and the java script menu, but that wasn't so bad. On other pages, i put some of the application in an iframe. 

In this way, you can even deploy multiple rails applications with one hosting provider account, see more in the link below.

Success !

Ambrosia</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have done this on hostingrails.com, you put these files in public_html directory, then create a sub-domain like yourapp.yourdomain.com.</p>
<p>My customer updates the static files using front page, the ruby on rails application files sit in their application folder. One drawback is that I had to copy some of the style sheet info and the java script menu, but that wasn&#8217;t so bad. On other pages, i put some of the application in an iframe. </p>
<p>In this way, you can even deploy multiple rails applications with one hosting provider account, see more in the link below.</p>
<p>Success !</p>
<p>Ambrosia</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rex M</title>
		<link>http://www.freezzo.com/2008/05/31/how-are-website-with-ruby-on-rails-built/#comment-30</link>
		<dc:creator>Rex M</dc:creator>
		<pubDate>Sat, 31 May 2008 23:28:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.freezzo.com/2008/05/31/how-are-website-with-ruby-on-rails-built/#comment-30</guid>
		<description>It seems like you are missing a few key fundamental concepts.. i.e., tried to dive straight into advanced topics without learning the basics. Try going through the three "getting started with RoR" tutorials that the RoR website recommends:</description>
		<content:encoded><![CDATA[<p>It seems like you are missing a few key fundamental concepts.. i.e., tried to dive straight into advanced topics without learning the basics. Try going through the three &#8220;getting started with RoR&#8221; tutorials that the RoR website recommends:</p>
]]></content:encoded>
	</item>
</channel>
</rss>
