<?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>justaddwater.dk &#187; Ruby on Rails</title>
	<atom:link href="http://justaddwater.dk/category/ruby-on-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://justaddwater.dk</link>
	<description>Instant Usability &#38; Web Standards</description>
	<lastBuildDate>Thu, 10 Jun 2010 08:23:32 +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>Seeding Rails App With RESTful Address Data</title>
		<link>http://justaddwater.dk/2010/04/28/seeding-rails-app-with-restful-address-data/</link>
		<comments>http://justaddwater.dk/2010/04/28/seeding-rails-app-with-restful-address-data/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 10:55:26 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=1341</guid>
		<description><![CDATA[Grabbing data from Restful webservices has never been easier. I use this code in the Rails /db/seeds.rb file to grab data from the Danish webservice with addresses, municipalities, regions, etc.
I decided to import the data into a local database to ensure it could work offline.
Code from
/db/seeds.rb
 file:

Now I can access municipalities in a grouped selectbox [...]]]></description>
			<content:encoded><![CDATA[<p>Grabbing data from Restful webservices has never been easier. I use this code in the Rails /db/seeds.rb file to grab data from the Danish webservice with addresses, municipalities, regions, etc.</p>
<p>I decided to import the data into a local database to ensure it could work offline.</p>
<p>Code from
<div class="codesnip-container" >/db/seeds.rb</div>
<p> file:</p>
<p><script src="http://gist.github.com/382105.js"></script></p>
<p>Now I can access municipalities in a grouped selectbox like so in the view code:</p>
<pre>
<div class="codesnip-container" >&lt;%
 options = option_groups_from_collection_for_select(Region.all, :kommuner, :name, :id, :name)
%&gt;

&lt;%=
 f.select("kommune_id", options, {}, {:class =&gt; "short"})
%&gt;</div>
</pre>
<p>The final result rendered in the user interface:<br />
<img src="http://justaddwater.dk/wp-content/uploads/2010/04/Screen-shot-2010-04-28-at-3.18.06-PM.png" alt="" title="Rails rendered optgroup selectbox" width="286" height="253" class="aligncenter size-full wp-image-1343" /></p>
<p>This code is based on Rails 2.3.5.</p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2010/04/28/seeding-rails-app-with-restful-address-data/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Rake Task To Validate All Items on All Models</title>
		<link>http://justaddwater.dk/2010/02/07/rake-task-to-validate-all-items-on-all-models/</link>
		<comments>http://justaddwater.dk/2010/02/07/rake-task-to-validate-all-items-on-all-models/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 13:13:04 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=1270</guid>
		<description><![CDATA[I wanted a way to see if somebody had entered &#8220;illegal&#8221; data into loaded fixtures. So I wrote this simple rake task. It&#8217;s also useful to run as you add more validations to your files.

]]></description>
			<content:encoded><![CDATA[<p>I wanted a way to see if somebody had entered &#8220;illegal&#8221; data into loaded fixtures. So I wrote this simple rake task. It&#8217;s also useful to run as you add more validations to your files.</p>
<p><script src="http://gist.github.com/297427.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2010/02/07/rake-task-to-validate-all-items-on-all-models/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Selection Groups in Rails made less cumbersome</title>
		<link>http://justaddwater.dk/2009/09/01/selection-groups-in-rails-made-less-cumbersome/</link>
		<comments>http://justaddwater.dk/2009/09/01/selection-groups-in-rails-made-less-cumbersome/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 12:50:32 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=1128</guid>
		<description><![CDATA[I made this addition today after (once again) struggling with option groups for a nested Rails model.
My solution: create a new tag for FormOptionsHelper: grouped_select 
http://gist.github.com/179075

]]></description>
			<content:encoded><![CDATA[<p>I made this addition today after (once again) struggling with option groups for a nested Rails model.</p>
<p>My solution: create a new tag for FormOptionsHelper: grouped_select </p>
<p><a href="http://gist.github.com/179075">http://gist.github.com/179075</a></p>
<div><script type="text/javascript" src="http://gist.github.com/179083.js"></script></div>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2009/09/01/selection-groups-in-rails-made-less-cumbersome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shorthand to clean up installed Rubygems (but don&#8217;t cleanup Rails)</title>
		<link>http://justaddwater.dk/2009/05/29/shorthand-to-clean-up-installed-rubygems-but-dont-cleanup-rails/</link>
		<comments>http://justaddwater.dk/2009/05/29/shorthand-to-clean-up-installed-rubygems-but-dont-cleanup-rails/#comments</comments>
		<pubDate>Fri, 29 May 2009 07:57:23 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[Rubygems]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=1098</guid>
		<description><![CDATA[I trimmed my installed Rubygems on my local development machine. The command &#8220;
sudo gem cleanup
&#8221; is just for that.
Only problem: What about my older Rails apps that require a specific version of Rails, ActiveRecord, etc.?
My solution:
gem list &#8211;no-versions &#124; grep -v &#8220;^active&#8221; &#124; grep -v &#8220;^action&#8221; &#124; grep -v &#8220;^rails$&#8221; &#124; xargs sudo gem cleanup [...]]]></description>
			<content:encoded><![CDATA[<p>I trimmed my installed Rubygems on my local development machine. The command &#8220;
<div class="codesnip-container" >sudo gem cleanup</div>
<p>&#8221; is just for that.</p>
<p>Only problem: What about my older Rails apps that require a specific version of Rails, ActiveRecord, etc.?</p>
<p>My solution:</p>
<blockquote><div class="codesnip-container" >gem list &#8211;no-versions | grep -v &#8220;^active&#8221; | grep -v &#8220;^action&#8221; | grep -v &#8220;^rails$&#8221; | xargs sudo gem cleanup {}</div>
</blockquote>
<p>Any suggestions on how to make it even simpler?</p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2009/05/29/shorthand-to-clean-up-installed-rubygems-but-dont-cleanup-rails/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Plugin for Rails&#8217;s Resource Controller</title>
		<link>http://justaddwater.dk/2008/11/07/plugin-for-railss-resource-controller/</link>
		<comments>http://justaddwater.dk/2008/11/07/plugin-for-railss-resource-controller/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 15:15:59 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=969</guid>
		<description><![CDATA[If you&#8217;re using Resource Controller for Ruby on Rails, you may want to look atthe plugin I just created.
From the readme file:
ResouceControllerRespondTo
==========================
Extends ResourceController plugin for Rails to make it respond_to .xml and .json formats
Based on code by Florent Piteau and Joe Fiorini&#8230; Jesper merely provided the glue and packed as plugin.
See resource controller forum thread [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re using Resource Controller for Ruby on Rails, you may want to look atthe plugin I just created.</p>
<p>From the readme file:</p>
<blockquote><p>ResouceControllerRespondTo<br />
==========================</p>
<p>Extends ResourceController plugin for Rails to make it respond_to .xml and .json formats</p>
<p>Based on code by Florent Piteau and Joe Fiorini&#8230; Jesper merely provided the glue and packed as plugin.<br />
See <a href="http://groups.google.com/group/resource_controller/browse_thread/thread/ec9100db655bc5a9">resource controller forum thread</a> for the complete discussion</p>
<p>Copyright (c) 2008 Jesper Rønn-Jensen (<a href="www.justaddwater.dk/">www.justaddwater.dk</a>), released under the MIT license
</p></blockquote>
<p>More info:<br />
<a href="http://github.com/jesperronn/resource_controller_respond_to/">resource_controller_respond_to</a> plugin on GitHub</p>
<p><a href="github.com/giraffesoft/resource_controller/">resource_controller</a> on GitHub</p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2008/11/07/plugin-for-railss-resource-controller/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Capgemini website article: Prototyping and Ruby on Rails</title>
		<link>http://justaddwater.dk/2008/04/24/capgemini-website-article-prototyping-and-ruby-on-rails/</link>
		<comments>http://justaddwater.dk/2008/04/24/capgemini-website-article-prototyping-and-ruby-on-rails/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 11:17:04 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Prototyping]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=923</guid>
		<description><![CDATA[<p>Capgemini officially adds Ruby to it's service offerings</p>

<p><img src='http://www.dk.capgemini.com/m/dk/img/jesper_mads_3_3841.jpg' alt='Jesper and Mads building bricks as a symbol of ruby prototyping' class='alignnone' /></p>


]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s official: Today our web team posted an article on our Danish Capgemini website: Prototyping and Ruby on Rails.<br />
<a href="http://www.dk.capgemini.com/ydelser/technology/prototyper/">www.dk.capgemini.com/ydelser/technology/prototyper</a> (in Danish)</p>
<p>The publication of this article marks a point where Capgemini officially adds Ruby to it&#8217;s service offerings (although some job offerings <a href="http://reca.nordic.capgemini.com/adList.asp?selAdID=2035&#038;cID=5" title="Capgemini DK Job (in Danish): Front-end web developer">like this</a> has mentioned it previously).</p>
<p>Here are some short extracts that I translated for your convenience:</p>
<blockquote cite="http://www.dk.capgemini.com/ydelser/technology/prototyper/"><p>
[...]Ruby on Rails opens up towards a more flexible development process, where it&#8217;s much easier to implement client requirements as the project runs. In collaboration with Capgemini , this means that it&#8217;s possible to lower price and time-to-market significantly for a product. But also to improve the quality of the final product
</p></blockquote>
<p><img src='http://www.dk.capgemini.com/m/dk/img/jesper_mads_3_3841.jpg' alt='Jesper and Mads building bricks as a symbol of ruby prototyping' class='alignnone' /></p>
<blockquote cite="http://www.dk.capgemini.com/ydelser/technology/prototyper/"><p>
Capgemini has recently proved that prototype development in advance of actual implementation can improve the result significantly. Jesper Rønn-Jensen, developer at Capgemini Denmark: </p>
<blockquote><p>&raquo;We have had working prototypes up and running in a matter of hours. A specific example was a project we decided to implement in Ruby on Rails. Originally the project was estimated at 400 hours in Microsoft .Net. With Ruby on Rails we could deliver it in 110 hours.&laquo;</p></blockquote>
</blockquote>
<p>&#8230;</p>
<blockquote cite="http://www.dk.capgemini.com/ydelser/technology/prototyper/"><p>
A prototype can be an experimental version of an unknown product, but can also be an early version of a future product, where the prototype along with a supplementary requirements specification can be used to visualize what the future system will work. The client gets a visualization of it&#8217;s ideas and will also get an idea of what further possibilities that can be added.</p>
<blockquote><p>Instead of writing detailed requirements documentation, we can develop a prototype that gives the client a concrete base to make decisions upon. At the same time it also provides the opportunity for our clients to challenge our ideas and thoughts, which only improves the product, </p></blockquote>
<p>adds Mads Buus Westmark.
</p></blockquote>
<p>If somebody is interested in providing a full translation, please do so &#8230; (i will probably translate more of the article at a later point or if you want it).</p>
<p>Photo by Reimar Juul (<a href="http://www.reimarjuul.com/">reimarjuul.com</a>)</p>
<p><small>Technorati Tags: <a href="http://technorati.com/tag/capgemini" rel="tag">capgemini</a>, <a href="http://technorati.com/tag/prototyping" rel="tag"> prototyping</a>, <a href="http://technorati.com/tag/ruby+on+rails" rel="tag"> ruby on rails</a>, <a href="http://technorati.com/tag/rails" rel="tag"> rails</a>, <a href="http://technorati.com/tag/ruby" rel="tag"> ruby</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2008/04/24/capgemini-website-article-prototyping-and-ruby-on-rails/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Free Beer for RubyFools Attendees</title>
		<link>http://justaddwater.dk/2008/03/31/free-beer-for-rubyfools-attendees/</link>
		<comments>http://justaddwater.dk/2008/03/31/free-beer-for-rubyfools-attendees/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 11:41:41 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Events/seminars]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/2008/03/31/free-beer-for-rubyfools-attendees/</guid>
		<description><![CDATA[I thought I&#8217;d better post this before April Fools day tomorrow. My employer, Capgemini has accepted to sponsor the Copenhagen RubyFools conference from today and till Wendesday.


The sponsorship involves that Capgemini will sponsor free beer for one hour at the Ruby Cave (social event) tomorrow evening. As far as i know, it starts at 7&#8242;o [...]]]></description>
			<content:encoded><![CDATA[<p>I thought I&#8217;d better post this before April Fools day tomorrow. My employer, Capgemini has accepted to sponsor the <a href="http://jaoo.dk/ruby-cph/conference/">Copenhagen RubyFools conference</a> from today and till Wendesday.<br />
<a href='http://jaoo.dk/ruby-cph/conference/' title='Ruby Fools conference website'><img src='http://justaddwater.dk/wp-content/uploads/2008/03/ruby_fools_logo_cph.gif' alt='ruby_fools_logo_cph.gif' /></a></p>
<p><a href='http://dk.capgemini.com/' title='Capgemini Denmark website'><img src='http://justaddwater.dk/wp-content/uploads/2008/03/capgemini-logo.gif' alt='capgemini-logo.gif' /></a></p>
<p>The sponsorship involves that Capgemini will sponsor free beer for one hour at the Ruby Cave (social event) tomorrow evening. As far as i know, it starts at 7&#8242;o clock. So be there and be thirsty. The more free beer you drink, the better return on investment for Capgemini :)</p>
<p>This slogan may be fit for the occasion &#8220;Together. Free your energies&#8221;:<br />
<a href='http://justaddwater.dk/wp-content/uploads/2008/03/capgemini-free-your-energies.png' title='capgemini-free-your-energies.png'><img src='http://justaddwater.dk/wp-content/uploads/2008/03/capgemini-free-your-energies.png' alt='capgemini-free-your-energies.png' /></a></p>
<p><small>Technorati Tags: <a href="http://technorati.com/tag/rubyfools" rel="tag">rubyfools</a>, <a href="http://technorati.com/tag/rails" rel="tag"> rails</a>, <a href="http://technorati.com/tag/ruby" rel="tag"> ruby</a>, <a href="http://technorati.com/tag/conference" rel="tag"> conference</a>, <a href="http://technorati.com/tag/capgemini" rel="tag"> capgemini</a>, <a href="http://technorati.com/tag/sponsor" rel="tag"> sponsor</a>, <a href="http://technorati.com/tag/beer" rel="tag"> beer</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2008/03/31/free-beer-for-rubyfools-attendees/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Great Quotes For The Agile Project Wall</title>
		<link>http://justaddwater.dk/2008/02/24/great-quotes-for-the-agile-project-wall/</link>
		<comments>http://justaddwater.dk/2008/02/24/great-quotes-for-the-agile-project-wall/#comments</comments>
		<pubDate>Sun, 24 Feb 2008 20:24:24 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Prototyping]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/2008/02/24/great-quotes-for-the-agile-project-wall/</guid>
		<description><![CDATA[At a recent internal Capgemini tradeshow, we had the pleasure of using some great quotes that really benefit working the way I like the best: Small agile teams where we can show and tell &#8212; make working software and prototypes very fast in close collaboration with clients.
Mads and I decided to add a few quotes [...]]]></description>
			<content:encoded><![CDATA[<p>At a recent internal Capgemini tradeshow, we had the pleasure of using some great quotes that really benefit working the way I like the best: Small agile teams where we can show and tell &#8212; make working software and prototypes very fast in close collaboration with clients.</p>
<p>Mads and I decided to add a few quotes of our own on the list &#8212; basically to provoke a bit internally.  One of the provocations were to call us &#8220;Ruby on Rails pioneers&#8221;. The reason for that is actually that a Danish newspaper last year called us that when describing this way of working.</p>
<blockquote><p>”Fools ignore complexity. Pragmatists suffer it. Some can avoid it. Geniuses remove it”</p></blockquote>
<p>- Alan Perlis<br />
(American computer scientist, inventor of ALGOL)</p>
<blockquote><p>”Expansion means complexity and complexity decay”</p></blockquote>
<p>- C. Northcote Parkinson<br />
(British historian and author)</p>
<blockquote><p>”Productivity is being able to do things that you were never able to do before”</p></blockquote>
<p>- Franz Kafka</p>
<blockquote><p>”Simplicity is prerequisite for reliability”</p></blockquote>
<p>- Edsger Dijkstra<br />
(Dutch mathematician, inventor of Shortest Path First Algorithm)</p>
<blockquote><p>” UNIX is basically a simple operating system, but you have to be a genius to understand the simplicity”</p></blockquote>
<p>- Dennis Ritchie<br />
(Inventor of C and and Unix core developer)</p>
<blockquote><p>“Simplicity is making the journey of this life with just baggage enough”</p></blockquote>
<p>- Charles Dudley Warner<br />
(American essayist and novelist)</p>
<blockquote><p>“The barrier to change is not too little caring; it is too much complexity”</p></blockquote>
<p>- Bill Gates<br />
(Inventor of DOS and Windows)</p>
<blockquote><p>“Simplicity is the ultimate sophistication”</p></blockquote>
<p>- Leonardo da Vinci</p>
<blockquote><p>“Life is really simple, but we insist on making it complicated”</p></blockquote>
<p>- Confucius</p>
<blockquote><p>Project success is not product success</p></blockquote>
<p>- Jeff Patton, Agile Alliance</p>
<blockquote><p>”Simplicity does not precede complexity, but follows it”</p></blockquote>
<p>- Alan Perlis<br />
(American computer scientist, inventor of ALGOL)</p>
<blockquote><p>“At a certain point, waterfall project development models force us to stop becoming smarter”</p></blockquote>
<p>- Jesper Rønn-Jensen<br />
(Capgemini Ruby on Rails pioneer)</p>
<blockquote><p>“Enterprise? &#8211; A colossal spaceship from the 80’s flown by people with bad taste: Highly advanced, but purely fictional”</p></blockquote>
<p>- Mads Buus Westmark<br />
(Capgemini Ruby on Rails pioneer)</p>
<blockquote><p>“Agile consultants: pricey, but not enterpricey”</p></blockquote>
<p>- Mads Buus Westmark<br />
(Capgemini Ruby on Rails pioneer)</p>
<p>More info:</p>
<ul>
<li>Justaddwater:<font size="-1"><span class="a"> </span></font><a href="http://justaddwater.dk/2006/04/12/rails-prototyping/" rel="bookmark" title="Permanent Link: Ruby on Rails as rapid prototyping tool">Ruby on Rails as rapid prototyping tool</a> (April 2006)</li>
<li>Justaddwater: <a href="http://justaddwater.dk/2008/02/02/selling-ruby-rails-and-agile-project-management/" rel="bookmark" title="Permanent Link: Selling Ruby, Rails, and Agile Project Management">Selling Ruby, Rails, and Agile Project Management</a> (February 3rd)</li>
<li>Justaddwater: <a href="http://justaddwater.dk/2007/02/13/danish-newspaper-interview-capgemini-on-rails/" rel="bookmark" title="Permanent Link: Danish Newspaper Interview: Capgemini on Rails">Danish Newspaper Interview: Capgemini on Rails</a> (February 2007)</li>
</ul>
<p>Feel free to add any quote you think should be added to this list.</p>
<p><small>Technorati Tags: <a href="http://technorati.com/tag/agile" rel="tag">agile</a>, <a href="http://technorati.com/tag/quotes" rel="tag"> quotes</a>, <a href="http://technorati.com/tag/simplicity" rel="tag"> simplicity</a>, <a href="http://technorati.com/tag/enterprise" rel="tag"> enterprise</a>, <a href="http://technorati.com/tag/ruby+on+rails" rel="tag"> ruby on rails</a>, <a href="http://technorati.com/tag/productivity" rel="tag"> productivity</a>, <a href="http://technorati.com/tag/prototyping" rel="tag"> prototyping</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2008/02/24/great-quotes-for-the-agile-project-wall/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Selling Ruby, Rails, and Agile Project Management</title>
		<link>http://justaddwater.dk/2008/02/02/selling-ruby-rails-and-agile-project-management/</link>
		<comments>http://justaddwater.dk/2008/02/02/selling-ruby-rails-and-agile-project-management/#comments</comments>
		<pubDate>Sat, 02 Feb 2008 18:46:01 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Prototyping]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/2008/02/02/selling-ruby-rails-and-agile-project-management/</guid>
		<description><![CDATA[My colleague Mads and myself made an internal &#8220;sales show&#8221; for the way we use Ruby on Rails to deliver web projects that are fast, small, agile prototypes in close collaboration with clients.
Here are a few photos from our internal Capgemini kickoff:

The sign says &#8220;Test yourself: Project manager &#8212; can you handle it&#8221;. Purpose: Show [...]]]></description>
			<content:encoded><![CDATA[<p>My colleague Mads and myself made an internal &#8220;sales show&#8221; for the way we use Ruby on Rails to deliver web projects that are fast, small, agile prototypes in close collaboration with clients.</p>
<p>Here are a few photos from our internal Capgemini kickoff:</p>
<p><a href="http://flickr.com/photos/jesper/2235781106/"><img src="http://farm3.static.flickr.com/2199/2235781106_a33f82c80a_m.jpg" alt="Mads and the fountains" /></a><br />
The sign says &#8220;Test yourself: Project manager &#8212; can you handle it&#8221;. Purpose: Show the difference between waterfall-like project management (left) and a more holistic approach (the fountain on the right)</p>
<p><a href="http://flickr.com/photos/jesper/2234991949/"><img src="http://farm3.static.flickr.com/2273/2234991949_966699f8e4_m.jpg" alt="Jesper and Mads" /></a><br />
Me and Mads at our presentation booth just before people arrive</p>
<p><a href="http://flickr.com/photos/jesper/2235005017/"><img src="http://farm3.static.flickr.com/2180/2235005017_aa0a89322c_m.jpg" alt="Mads demoing and explaining" /></a></p>
<p><strong>UPDATE: </strong>Added the following photos taken by Tobias<br />
<a href="http://www.flickr.com/photos/jesper/2266026923/" title="Our presentation booth from above by Tobias Michaelsen"><img src="http://farm3.static.flickr.com/2093/2266026923_a23f5027b1_m.jpg" alt="Our presentation booth from above" height="160" width="240" /></a></p>
<p><a href="http://www.flickr.com/photos/jesper/2266026609/" title="Mads demoing and explaining by Tobias Michaelsen"><img src="http://farm3.static.flickr.com/2095/2266026609_90129cab1b_m.jpg" width="240" height="137" alt="Mads demoing and explaining" /></a><br /><p><small>Technorati Tags: <a href="http://technorati.com/tag/ruby" rel="tag">ruby</a>, <a href="http://technorati.com/tag/rails" rel="tag"> rails</a>, <a href="http://technorati.com/tag/agile" rel="tag"> agile</a>, <a href="http://technorati.com/tag/web" rel="tag"> web</a>, <a href="http://technorati.com/tag/development" rel="tag"> development</a>, <a href="http://technorati.com/tag/capgemini" rel="tag"> capgemini</a>, <a href="http://technorati.com/tag/madsbuus" rel="tag"> madsbuus</a>, <a href="http://technorati.com/tag/jesperr%C3%B8nnjensen" rel="tag"> jesperrønnjensen</a>, <a href="http://technorati.com/tag/presentation" rel="tag"> presentation</a>, <a href="http://technorati.com/tag/trade+show" rel="tag"> trade show</a>, <a href="http://technorati.com/tag/project+manager" rel="tag"> project manager</a>, <a href="http://technorati.com/tag/waterfall" rel="tag"> waterfall</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2008/02/02/selling-ruby-rails-and-agile-project-management/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Rails Localization Plugin Release Version 0.9</title>
		<link>http://justaddwater.dk/2008/01/13/rails-localization-plugin-release-version-09/</link>
		<comments>http://justaddwater.dk/2008/01/13/rails-localization-plugin-release-version-09/#comments</comments>
		<pubDate>Sun, 13 Jan 2008 21:26:44 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/2008/01/13/rails-localization-plugin-release-version-09/</guid>
		<description><![CDATA[Just a quick note to tell that I released version 0.9 of the L10n-simplified plugin. It has been a year since last release, but I had nohurry since the last version already fit for Rails 2.0.
One of the nice changes for this release is that you can now set your localized language in the environment.rb [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick note to tell that I released version 0.9 of the L10n-simplified plugin. It has been a year since last release, but I had nohurry since the last version already fit for Rails 2.0.</p>
<p>One of the nice changes for this release is that you can now set your localized language in the environment.rb file like this:</p>
<blockquote><p>L10N_LANG = :da #or whatever language/locale you wish</p></blockquote>
<p><a href="http://rubyforge.org/frs/?group_id=2074&amp;release_id=18106">Download the relase 0.9 from Rubyforge</a></p>
<h3>Supported languages</h3>
<p>* Czech<br />
* Danish<br />
* Dutch<br />
* English (for running test cases and comparing to normal texts)<br />
* Finnish<br />
* French<br />
* French (Canadian)<br />
* German<br />
* Italian<br />
* Korean<br />
* Norwegian<br />
* Portugese<br />
* Russian<br />
* Serbian<br />
* Spanish<br />
* Spanish (argentinian)<br />
* Swedish<br />
* Swedish Chef, and<br />
* Pirate talk (just for the fun of it)<br />
* any other language you want. Just dump your translation in the /lib folder</p>
<h3>Full changelog:</h3>
<blockquote><p>* &#8212; release 0.9 (2008-01-13) &#8212;<br />
* Possible to set language in environment.rb: L10N_LANG = :de<br />
* UTF-8 database charset configuration is default in Rails 1.2+ and 2.0, so not needed in plugin more.<br />
* L10n-Simplified plugin also available as gem from this release<br />
* Moved changelog from README to separate file changelog.txt<br />
* Removed duplicate line from lang_de.rb<br />
* Russian translation (thanks Denis Pankratov)<br />
* Corrected German date/time format (thanks Christian W Zuckschwerdt)<br />
* Added Portugese translation (thanks Carlos Afonso)<br />
* Italian translation adjustments (thanks Michele Franzin)<br />
* Fixed translation error in Swedish translation (thanks Ingemar Edsborn)<br />
* Czech translation by Karel Minařík<br />
* French lang file updated (thanks Bruno Michel)<br />
* Added Serbian (thanks Slobodan Kovacevic)<br />
* Lang_it file must be UTF-8 encoded (thanks Fabio Bonelli)<br />
* Added rake task for creating a release &#8220;rake package&#8221;<br />
* Fixed rake task for generating rdoc in UTF-8 format<br />
* Added Norwegian (thanks Fredrik Bach)</p></blockquote>
<h3>More info:</h3>
<ul>
<li>Justaddwater: <a href="http://justaddwater.dk/2006/08/24/ruby-on-rails-plugin-localize-your-rails-app/" rel="bookmark" title="Permanent Link to Ruby on Rails plugin: Localize your Rails app">Ruby on Rails plugin: Localize your Rails app</a> (Aug 2006)</li>
<li>Rubyforge <a href="http://rubyforge.org/projects/l10n-simplified/">Localization Simplified homepage</a> (<a href="http://rubyforge.org/frs/?group_id=2074&amp;release_id=18106">download release 0.9</a>)</li>
<li>Rails Wiki: <a href="http://wiki.rubyonrails.com/rails/pages/InternationalizationComparison">InternationalizationComparison</a></li>
<li>Agilewebdevelopment plugin page: <a href="http://agilewebdevelopment.com/plugins/localization_simplified">L10N-Simplified</a> (remember to vote)</li>
</ul>
<p><small>Technorati Tags: <a href="http://technorati.com/tag/ruby+on+rails" rel="tag">ruby on rails</a>, <a href="http://technorati.com/tag/rails+plugin" rel="tag">  rails plugin</a>, <a href="http://technorati.com/tag/simple+localization" rel="tag">  simple localization</a>, <a href="http://technorati.com/tag/l10n" rel="tag">  l10n</a>, <a href="http://technorati.com/tag/i18n" rel="tag">  i18n</a>, <a href="http://technorati.com/tag/internationalization" rel="tag">  internationalization</a>, <a href="http://technorati.com/tag/danish" rel="tag">  danish</a>, <a href="http://technorati.com/tag/swedish" rel="tag">  swedish</a>, <a href="http://technorati.com/tag/dutch" rel="tag">  dutch</a>, <a href="http://technorati.com/tag/spanish" rel="tag">  spanish</a>, <a href="http://technorati.com/tag/german" rel="tag">  german</a>, <a href="http://technorati.com/tag/swedish+chef" rel="tag">  swedish chef</a>, <a href="http://technorati.com/tag/pirate+talk" rel="tag">  pirate talk</a>, <a href="http://technorati.com/tag/pirate+day" rel="tag">  pirate day</a>, <a href="http://technorati.com/tag/translation" rel="tag">  translation</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2008/01/13/rails-localization-plugin-release-version-09/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>
