<?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>RCK2.net &#187; ruby on rails</title>
	<atom:link href="http://rck2.net/tag/ruby-on-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://rck2.net</link>
	<description>tangled thoughts</description>
	<lastBuildDate>Tue, 13 Jul 2010 15:04:32 +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>Rob on Rails</title>
		<link>http://rck2.net/2010/02/01/rob-on-rails/</link>
		<comments>http://rck2.net/2010/02/01/rob-on-rails/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 17:09:03 +0000</pubDate>
		<dc:creator>rkalajian</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ruby on rails]]></category>

		<guid isPermaLink="false">http://rck2.net/?p=572</guid>
		<description><![CDATA[I&#8217;m just wrapping up my second full Rails project at work, and I have to say that I&#8217;m slowly getting the hang of things. It&#8217;s wonderful (and frustrating) that I can look back at my first project and realize all the things I did wrong. The good part about that is a lot of the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m just wrapping up my second full Rails project at work, and I have to say that I&#8217;m slowly getting the hang of things.</p>
<p>It&#8217;s wonderful (and frustrating) that I can look back at my first project and realize all the things I did wrong.  The good part about that is a lot of the first-time mistakes I made are easily fixed. I&#8217;m pretty sure I&#8217;ll be saying the same thing about my current project once I&#8217;ve moved on to the next.</p>
<p>While I&#8217;ve come a long way, I still feel I need some proper training so I can really get into the deeper stuff with Rails.  While I&#8217;m sure I can do pretty much anything I need to, and anything my job requires, I&#8217;d really like to grow my skills so I can start REALLY using it. I&#8217;d love nothing more than to let a client know we can go above and beyond for them, and really make their interactive shine.</p>
]]></content:encoded>
			<wfw:commentRss>http://rck2.net/2010/02/01/rob-on-rails/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DRY database.yml</title>
		<link>http://rck2.net/2009/05/12/dry-databaseyml/</link>
		<comments>http://rck2.net/2009/05/12/dry-databaseyml/#comments</comments>
		<pubDate>Tue, 12 May 2009 12:59:50 +0000</pubDate>
		<dc:creator>rkalajian</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[dry]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[sqlite3]]></category>

		<guid isPermaLink="false">http://rck2.net/?p=336</guid>
		<description><![CDATA[A more DRY way of setting up your database.yml in Rails: login: &#38;login adapter: sqlite3 username: username password: password development: &#60;&#60;: *login database: app_dev test: &#60;&#60;: *login database: app_test production: &#60;&#60;: *login database: app_prod If you&#8217;re connecting via mysql, it&#8217;s a similar setup. login: &#38;login adapter: mysql username: username password: password host: mysql host development: [...]]]></description>
			<content:encoded><![CDATA[<p>A more DRY way of setting up your database.yml in Rails:</p>
<blockquote><p>login: &amp;login<br />
adapter: sqlite3<br />
username: username<br />
password: password</p>
<p>development:<br />
&lt;&lt;: *login<br />
database: app_dev</p>
<p>test:<br />
&lt;&lt;: *login<br />
database: app_test</p>
<p>production:<br />
&lt;&lt;: *login<br />
database: app_prod</p></blockquote>
<p>If you&#8217;re connecting via mysql, it&#8217;s a similar setup.</p>
<blockquote><p>login: &amp;login<br />
adapter: mysql<br />
username: username<br />
password: password<br />
host: mysql host</p>
<p>development:<br />
&lt;&lt;: *login<br />
database: app_dev</p>
<p>test:<br />
&lt;&lt;: *login<br />
database: app_test</p>
<p>production:<br />
&lt;&lt;: *login<br />
database: app_prod</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://rck2.net/2009/05/12/dry-databaseyml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gettin&#8217; My Rails On</title>
		<link>http://rck2.net/2009/05/11/gettin-my-rails-on/</link>
		<comments>http://rck2.net/2009/05/11/gettin-my-rails-on/#comments</comments>
		<pubDate>Tue, 12 May 2009 00:17:31 +0000</pubDate>
		<dc:creator>rkalajian</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ruby on rails]]></category>

		<guid isPermaLink="false">http://rck2.net/?p=333</guid>
		<description><![CDATA[The company I work at has decided to move away from being a PHP shop and switch over to Rails for most of the development work.  Both the lead developer and I have been jonsing for this for some time now, and we&#8217;re finally getting everything in place to make it happen.  There&#8217;s going to [...]]]></description>
			<content:encoded><![CDATA[<p>The company I work at has decided to move away from being a PHP shop and switch over to Rails for most of the development work.  Both the lead developer and I have been jonsing for this for some time now, and we&#8217;re finally getting everything in place to make it happen.  There&#8217;s going to be some massive crunch time so our team (now 3 developers strong!) can get up to snuff in Rails and actually start moving forward  with new projects.</p>
<p>This is just the push I&#8217;ve needed to move away from playing with Rails as kind of a hobby, and really start getting serious with it.</p>
]]></content:encoded>
			<wfw:commentRss>http://rck2.net/2009/05/11/gettin-my-rails-on/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
