<?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>SimonOnSoftware &#187; ruby</title>
	<atom:link href="http://simononsoftware.com/tag/ruby/feed/" rel="self" type="application/rss+xml" />
	<link>http://simononsoftware.com</link>
	<description>programming, databases and other IT something</description>
	<lastBuildDate>Thu, 29 Jul 2010 18:48:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Indentation Checking in Ruby</title>
		<link>http://simononsoftware.com/indentation-checking-in-ruby/</link>
		<comments>http://simononsoftware.com/indentation-checking-in-ruby/#comments</comments>
		<pubDate>Sun, 23 May 2010 20:09:01 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://simononsoftware.com/?p=853</guid>
		<description><![CDATA[In Python blocks have to be indented just because the indentation level defines the logic. In C/C++/Java there are { and } while in Ruby there is begin and end. Of course indenting is helpful. Just like syntax coloring in editor.
In Ruby can do whatever you want with the indentation. That&#8217;s not a problem. Every [...]


<strong>Related posts:</strong><ol><li><a href='http://simononsoftware.com/what-i-dont-like-about-python/' rel='bookmark' title='Permanent Link: What I Don&#8217;t Like About Python'>What I Don&#8217;t Like About Python</a> <small>Python &#8211; maybe you know &#8211; is a computer language...</small></li>
<li><a href='http://simononsoftware.com/naming-convention-aka-php-vs-python/' rel='bookmark' title='Permanent Link: Naming Convention aka PHP vs Python'>Naming Convention aka PHP vs Python</a> <small>Is Python really better than PHP? I doubt, and in...</small></li>
<li><a href='http://simononsoftware.com/ruby-rails-awesome/' rel='bookmark' title='Permanent Link: Ruby, Rails&#8230; AWESOME'>Ruby, Rails&#8230; AWESOME</a> <small>I really don&#8217;t get it, why almost each post or...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://simononsoftware.com/indentation-checking-in-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Use ORMs?</title>
		<link>http://simononsoftware.com/why-use-orms/</link>
		<comments>http://simononsoftware.com/why-use-orms/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 20:10:53 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[database]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[active record]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[orm]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.simononsoftware.com/?p=674</guid>
		<description><![CDATA[Why Use ORMs?
ORM aka Object Relational Mapping is a quite crappy way of converting relational database model into some object model. Usually this simply means that there is created an object in the software for each table that exists in the database.
Usually many people says that ORMs are the best human idea since the sliced [...]


<strong>Related posts:</strong><ol><li><a href='http://simononsoftware.com/sqlalchemy-defines-new-sql-standard/' rel='bookmark' title='Permanent Link: SQLAlchemy Defines New SQL Standard'>SQLAlchemy Defines New SQL Standard</a> <small>Dreaming About SQL Well, I thought that I know the...</small></li>
<li><a href='http://simononsoftware.com/testing-database-small-reply/' rel='bookmark' title='Permanent Link: Testing Database &#8211; Small Reply'>Testing Database &#8211; Small Reply</a> <small>On Ovid&#8217;s blog I found lately this entry. First of...</small></li>
<li><a href='http://simononsoftware.com/why-ruby-on-rails-migrations-dont-work/' rel='bookmark' title='Permanent Link: Why Ruby on Rails Migrations Don&#8217;t Work'>Why Ruby on Rails Migrations Don&#8217;t Work</a> <small>Ruby on Rails Migrations Migrations in Ruby on Rails provide...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://simononsoftware.com/why-use-orms/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Playing Rails Migrations</title>
		<link>http://simononsoftware.com/playing-rails-migrations/</link>
		<comments>http://simononsoftware.com/playing-rails-migrations/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 10:29:26 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[database]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.simononsoftware.com/?p=504</guid>
		<description><![CDATA[Last time I keep on playing Ruby on Rails, quite nice tool but migrations are something a little bit… well… Houston, we&#8217;ve got a problem. Databases in Rails are treated as a simple stupid bag full of data put here and there.
Main problems that I met during those simple migrations:

 No use of checks in [...]


<strong>Related posts:</strong><ol><li><a href='http://simononsoftware.com/why-ruby-on-rails-migrations-dont-work/' rel='bookmark' title='Permanent Link: Why Ruby on Rails Migrations Don&#8217;t Work'>Why Ruby on Rails Migrations Don&#8217;t Work</a> <small>Ruby on Rails Migrations Migrations in Ruby on Rails provide...</small></li>
<li><a href='http://simononsoftware.com/why-use-orms/' rel='bookmark' title='Permanent Link: Why Use ORMs?'>Why Use ORMs?</a> <small>Why Use ORMs? ORM aka Object Relational Mapping is a...</small></li>
<li><a href='http://simononsoftware.com/ruby-rails-awesome/' rel='bookmark' title='Permanent Link: Ruby, Rails&#8230; AWESOME'>Ruby, Rails&#8230; AWESOME</a> <small>I really don&#8217;t get it, why almost each post or...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://simononsoftware.com/playing-rails-migrations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s Wrong With Merb.</title>
		<link>http://simononsoftware.com/whats-wrong-with-merb/</link>
		<comments>http://simononsoftware.com/whats-wrong-with-merb/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 11:26:36 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[merb]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ROR]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://localhost:9991/?p=3</guid>
		<description><![CDATA[Merb is going to be a new killer application used as a replacement for ROR (also called Ruby on Rails). It is said to be faster, more reliable, better, more funny and much simpler. That sounds so nice that I gave it a chance and tried some time ago, it was hard to work with [...]


<strong>Related posts:</strong><ol><li><a href='http://simononsoftware.com/new-merb-10-is-out/' rel='bookmark' title='Permanent Link: New Merb 1.0 is Out'>New Merb 1.0 is Out</a> <small>Yea&#8230; great? Let&#8217;s install that. I used thor. First copy...</small></li>
<li><a href='http://simononsoftware.com/datamapper-and-ruby-on-rails/' rel='bookmark' title='Permanent Link: Datamapper and Ruby On Rails'>Datamapper and Ruby On Rails</a> <small>Aaaaaargh. Some time ago I wrote about problems with merb....</small></li>
<li><a href='http://simononsoftware.com/what-i-dont-like-about-python/' rel='bookmark' title='Permanent Link: What I Don&#8217;t Like About Python'>What I Don&#8217;t Like About Python</a> <small>Python &#8211; maybe you know &#8211; is a computer language...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://simononsoftware.com/whats-wrong-with-merb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
