<?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>Riding The Breeze &#187; Travelling on Rails</title>
	<atom:link href="http://www.iliveinperego.com/category/travelling-on-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.iliveinperego.com</link>
	<description>Yes !</description>
	<lastBuildDate>Fri, 12 Feb 2010 09:46:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Rails API with the AJAX flavor</title>
		<link>http://www.iliveinperego.com/2007/05/rails-api-with-the-ajax-flavor/</link>
		<comments>http://www.iliveinperego.com/2007/05/rails-api-with-the-ajax-flavor/#comments</comments>
		<pubDate>Thu, 10 May 2007 07:47:30 +0000</pubDate>
		<dc:creator>simone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Travelling on Rails]]></category>

		<guid isPermaLink="false">http://www.iliveinperego.com/rails-api-with-the-ajax-flavor</guid>
		<description><![CDATA[http://www.railsbrain.com/
]]></description>
			<content:encoded><![CDATA[<p>http://www.railsbrain.com/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iliveinperego.com/2007/05/rails-api-with-the-ajax-flavor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby on Rails cheat sheet</title>
		<link>http://www.iliveinperego.com/2007/03/ruby-on-rails-cheat-sheet/</link>
		<comments>http://www.iliveinperego.com/2007/03/ruby-on-rails-cheat-sheet/#comments</comments>
		<pubDate>Thu, 15 Mar 2007 08:28:29 +0000</pubDate>
		<dc:creator>simone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Travelling on Rails]]></category>

		<guid isPermaLink="false">http://www.iliveinperego.com/ruby-on-rails-cheat-sheet</guid>
		<description><![CDATA[All the commands you need in one page

RoR cheat sheet

]]></description>
			<content:encoded><![CDATA[<p>All the commands you need in one page</p>
<ul>
<li><a title="RoR cheat sheet" href="http://blog.nanorails.com/pages/rails_1.1_cheat_sheet">RoR cheat sheet</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.iliveinperego.com/2007/03/ruby-on-rails-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Names</title>
		<link>http://www.iliveinperego.com/2006/11/names-2/</link>
		<comments>http://www.iliveinperego.com/2006/11/names-2/#comments</comments>
		<pubDate>Thu, 16 Nov 2006 22:43:22 +0000</pubDate>
		<dc:creator>simone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Travelling on Rails]]></category>

		<guid isPermaLink="false">http://www.iliveinperego.com/names-2</guid>
		<description><![CDATA[
Table
friends &#124; Stores data
Model
Friend &#124; Data validation &#038; relationships like belongs_to or belongs_to
Controller
friend &#124; Says what to do and where to do it

]]></description>
			<content:encoded><![CDATA[<dl>
<dt>Table</dt>
<dd>friends | Stores data</dd>
<dt>Model</dt>
<dd>Friend | Data validation &#038; relationships like <em>belongs_to</em> or <em>belongs_to</em></dd>
<dt>Controller</dt>
<dd>friend | Says what to do and where to do it</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://www.iliveinperego.com/2006/11/names-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Commands</title>
		<link>http://www.iliveinperego.com/2006/02/names/</link>
		<comments>http://www.iliveinperego.com/2006/02/names/#comments</comments>
		<pubDate>Fri, 24 Feb 2006 21:50:04 +0000</pubDate>
		<dc:creator>simone</dc:creator>
				<category><![CDATA[Travelling on Rails]]></category>

		<guid isPermaLink="false">http://www.iliveinperego.com/names</guid>
		<description><![CDATA[Module name Friend &#124; Table name friends
Create the module
./script/generate controller Friends [list view new edit]
creates
apps/controllers/friends_controller.rb
apps/helpers/friends_helper.rb
if you specify any actions you will also get
app/view/friends/action.rhtml
To generate the model
./script/generate model Friend
If you wanna use the scaffold for this module just open
apps/controllers/friends_controller.rb
and modify it to
class FriendsController < ApplicationController
scaffold :friend
end
For a short and fast explanation about names in RoR have [...]]]></description>
			<content:encoded><![CDATA[<p>Module name <strong class="hl">F</strong>riend | Table name <strong class="hl">f</strong>riend<strong class="hl">s</strong></p>
<p>Create the module</p>
<blockquote><p>./script/generate controller <strong class="hl">F</strong>riend<strong class="hl">s</strong> <em>[list view new edit]</em></p></blockquote>
<p>creates</p>
<blockquote><p>apps/controllers/<strong class="hl">f</strong>riend<strong class="hl">s</strong>_controller.rb</p>
<p>apps/helpers/<strong class="hl">f</strong>riend<strong class="hl">s</strong>_helper.rb</p></blockquote>
<p>if you specify any <em>actions</em> you will also get</p>
<blockquote><p>app/view/<strong class="hl">f</strong>riend<strong class="hl">s</strong>/<em>action</em>.rhtml</p></blockquote>
<p>To generate the model</p>
<blockquote><p>./script/generate model <strong class="hl">F</strong>riend</p></blockquote>
<p>If you wanna use the <em>scaffold</em> for this module just open</p>
<blockquote><p>apps/controllers/<strong class="hl">f</strong>riend<strong class="hl">s</strong>_controller.rb</p></blockquote>
<p>and modify it to</p>
<pre>class FriendsController < ApplicationController
scaffold :friend
end</pre>
<p>For a short and fast explanation about names in RoR have a look to <a title="Rails Tip Sheet For Beginners" href="http://wiki.rubyonrails.org/rails/pages/TipSheetForBeginners">Rails Tip Sheet<br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iliveinperego.com/2006/02/names/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plugin not found: engine</title>
		<link>http://www.iliveinperego.com/2006/02/plugin-not-found-engine/</link>
		<comments>http://www.iliveinperego.com/2006/02/plugin-not-found-engine/#comments</comments>
		<pubDate>Wed, 15 Feb 2006 20:39:59 +0000</pubDate>
		<dc:creator>simone</dc:creator>
				<category><![CDATA[Travelling on Rails]]></category>

		<guid isPermaLink="false">http://www.iliveinperego.com/?p=3</guid>
		<description><![CDATA[If running this command :
./script/plugin install engines
you get the message:
Plugin not found: engines
Is because none of the server listed in your plugin sources has the engine plugin.
So, open the file .rails-plugin-sources
 vi ~/.rails-plugin-sources
and add this line
 http://opensvn.csie.org/rails_engines/plugins/
This source has the engine plugin and many other listed at http://rails-engines.org/
]]></description>
			<content:encoded><![CDATA[<p>If running this command :</p>
<blockquote><p><strong>./script/plugin install engines</strong></p></blockquote>
<p>you get the message:</p>
<blockquote><p><strong>Plugin not found: engines</strong></p></blockquote>
<p>Is because none of the server listed in your plugin sources has the engine plugin.</p>
<p>So, open the file <strong>.rails-plugin-sources</strong></p>
<blockquote><p><strong> vi </strong><strong>~/</strong><strong>.rails-plugin-sources</strong></p></blockquote>
<p>and add this line</p>
<blockquote><p><strong> http://opensvn.csie.org/rails_engines/plugins/</strong></p></blockquote>
<p>This source has the engine plugin and many other listed at <a title="Rails Engines" href="http://rails-engines.org/">http://rails-engines.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iliveinperego.com/2006/02/plugin-not-found-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
