<?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>iT Design NZ &#187; Ruby on Rails</title>
	<atom:link href="http://www.itdesign.co.nz/category/ruby-on-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.itdesign.co.nz</link>
	<description>Web Development</description>
	<lastBuildDate>Sat, 27 Jun 2009 20:54:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Resources :as</title>
		<link>http://www.itdesign.co.nz/ruby-on-rails/resources-as/</link>
		<comments>http://www.itdesign.co.nz/ruby-on-rails/resources-as/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 20:54:00 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://www.itdesign.co.nz/?p=32</guid>
		<description><![CDATA[map.resources :people generates URLs like: /people/ map.resources :people, :as =&#62; &#8216;who-we-are&#8217; /who-we-are/]]></description>
			<content:encoded><![CDATA[<p>map.resources :people</p>
<p>generates URLs like:</p>
<p>/people/</p>
<p>map.resources :people, :as =&gt; &#8216;who-we-are&#8217;</p>
<p>/who-we-are/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itdesign.co.nz/ruby-on-rails/resources-as/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DB Adapter specific code in migrations</title>
		<link>http://www.itdesign.co.nz/ruby-on-rails/db-adapter-specific-code-in-migrations/</link>
		<comments>http://www.itdesign.co.nz/ruby-on-rails/db-adapter-specific-code-in-migrations/#comments</comments>
		<pubDate>Sun, 24 May 2009 20:30:45 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://www.itdesign.co.nz/?p=26</guid>
		<description><![CDATA[adapter = User.connection.instance_variable_get(&#8220;@config&#8221;)[:adapter] if adapter == &#8220;jdbc&#8221; # Oracle # &#8230; elsif adapter == &#8220;postgresql&#8221; # Postgres # &#8230; end]]></description>
			<content:encoded><![CDATA[<p>adapter = User.connection.instance_variable_get(&#8220;@config&#8221;)[:adapter]</p>
<p>if adapter == &#8220;jdbc&#8221; # Oracle</p>
<p># &#8230;</p>
<p>elsif adapter == &#8220;postgresql&#8221; # Postgres</p>
<p># &#8230;</p>
<p>end</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itdesign.co.nz/ruby-on-rails/db-adapter-specific-code-in-migrations/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>NZ on Screen wins Best Entertainment Website</title>
		<link>http://www.itdesign.co.nz/ruby-on-rails/nz-on-screen-wins-best-entertainment-website/</link>
		<comments>http://www.itdesign.co.nz/ruby-on-rails/nz-on-screen-wins-best-entertainment-website/#comments</comments>
		<pubDate>Wed, 20 May 2009 22:19:41 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://www.itdesign.co.nz/?p=23</guid>
		<description><![CDATA[NZ on Screen won the Best Entertainment Website award at the 2009 Qantas Media Awards.]]></description>
			<content:encoded><![CDATA[<p><a title="NZ on Screen" href="http://www.nzonscreen.com/" target="_blank">NZ on Screen</a> won the Best Entertainment Website award at the 2009 <a title="Qantas Media Awards 2009" href="http://www.qantasmediaawards.co.nz/web.html#entertainment" target="_blank">Qantas Media Awards</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itdesign.co.nz/ruby-on-rails/nz-on-screen-wins-best-entertainment-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby on Rails</title>
		<link>http://www.itdesign.co.nz/ruby-on-rails/ruby-on-rails/</link>
		<comments>http://www.itdesign.co.nz/ruby-on-rails/ruby-on-rails/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 07:08:23 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://blog.itdesign.co.nz/ruby-on-rails/ruby-on-rails/</guid>
		<description><![CDATA[Ruby on Rails is a web development framework that promotes good programming practices while supporting rapid application development]]></description>
			<content:encoded><![CDATA[<p>Ruby on Rails is a web development framework that promotes good programming practices while supporting rapid application development.</p>
<p>Ruby is a programming language developed in the mid 1990&#8242;s. Rails is an MVC (model view controller) framework.</p>
<p>References:</p>
<p><a target="_blank" href="http://www.rubyonrails.org/" title="Ruby on Rails">Ruby on Rails</a> [<a target="_blank" href="http://en.wikipedia.org/wiki/Ruby_on_Rails" title="Ruby on Rails - Wikipedia">wikipedia</a>]</p>
<p><a target="_blank" href="http://www.ruby-lang.org/" title="Ruby">Ruby</a> [<a target="_blank" href="http://en.wikipedia.org/wiki/Ruby" title="Ruby on wikipedia">wikipedia</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itdesign.co.nz/ruby-on-rails/ruby-on-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
