<?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>fallinglab &#187; Ruby</title>
	<atom:link href="http://www.fallinglab.com/category/ruby/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fallinglab.com</link>
	<description>It's Not How Far You Fall, It's the Way You Land</description>
	<lastBuildDate>Wed, 17 Mar 2010 21:10:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Actualizar aplicación a Rails 2.3</title>
		<link>http://www.fallinglab.com/2009/04/06/actualizar-aplicacion-a-rails-23/</link>
		<comments>http://www.fallinglab.com/2009/04/06/actualizar-aplicacion-a-rails-23/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 05:00:24 +0000</pubDate>
		<dc:creator>gustavoe</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://www.fallinglab.com/?p=52</guid>
		<description><![CDATA[Si actualizaste a Rails 2.3 y estas obteniendo este mensaje de error: uninitialized constant ApplicationController solo tenés que renombrar application.rb a application_controller.rb tal es el nuevo nombre que rails 2.3 le da. Tambien podés hacerlo ejecutando: rake rails:update:application_controller]]></description>
			<content:encoded><![CDATA[<p>Si actualizaste a Rails 2.3 y estas obteniendo este mensaje de error:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">uninitialized constant ApplicationController</pre></div></div>

<p>solo tenés que renombrar application.rb a application_controller.rb tal es el nuevo nombre que rails 2.3 le da. Tambien podés hacerlo ejecutando:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">rake rails:update:application_controller</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.fallinglab.com/2009/04/06/actualizar-aplicacion-a-rails-23/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eliminar archivos de backup de Vim o Gedit de un repositorio GIT</title>
		<link>http://www.fallinglab.com/2008/11/12/eliminar-archivos-de-backup-de-vim-o-gedit-de-un-repositorio-git/</link>
		<comments>http://www.fallinglab.com/2008/11/12/eliminar-archivos-de-backup-de-vim-o-gedit-de-un-repositorio-git/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 01:43:55 +0000</pubDate>
		<dc:creator>gustavoe</dc:creator>
				<category><![CDATA[Gedit]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.fallinglab.com/?p=20</guid>
		<description><![CDATA[Si te sucede que te olvidaste de incluir la línea necesaria para ingnorar los archivos de backup en el archivo .gitignore y necesitas eliminar todos los archivos de backup de repositorio. Podes hacerlo con el siguiente comando: find ./ -name '*~' &#124; xargs git-rm Luego, definitivamente agregá la línea *~ al archivo .gitignore y hacé [...]]]></description>
			<content:encoded><![CDATA[<p>Si te sucede que te olvidaste de incluir la línea necesaria para ingnorar los archivos de backup en el archivo .gitignore y necesitas eliminar todos los archivos de backup de repositorio. Podes hacerlo con el siguiente comando:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> .<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #660033;">-name</span> <span style="color: #ff0000;">'*~'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">xargs</span> <span style="color: #c20cb9; font-weight: bold;">git-rm</span></pre></div></div>

<p>Luego, definitivamente agregá la línea</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">*</span>~</pre></div></div>

<p>al archivo .gitignore y hacé el commit de los cambios</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">git</span> add .gitignore
<span style="color: #c20cb9; font-weight: bold;">git</span> commit <span style="color: #660033;">-m</span> <span style="color: #ff0000;">&quot;Se borraron los archivos de Backup&quot;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.fallinglab.com/2008/11/12/eliminar-archivos-de-backup-de-vim-o-gedit-de-un-repositorio-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instalar FXRuby en Ubuntu</title>
		<link>http://www.fallinglab.com/2008/11/02/instalar-fxruby-en-ubuntu/</link>
		<comments>http://www.fallinglab.com/2008/11/02/instalar-fxruby-en-ubuntu/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 02:46:10 +0000</pubDate>
		<dc:creator>gustavoe</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.fallinglab.com/2008/11/02/instalar-fxruby-en-ubuntu/</guid>
		<description><![CDATA[Antes de instalar el gem fxruby es necesario tener instalado el fox-toolkit 1.6 en Ubuntu sudo apt-get install libfox-1.6-0 libfox-1.6-dev y recien instalar fxruby sudo gem install fxruby]]></description>
			<content:encoded><![CDATA[<p>Antes de instalar el gem fxruby es necesario tener instalado el fox-toolkit 1.6 en Ubuntu</p>
<p><code><br />
sudo apt-get install libfox-1.6-0 libfox-1.6-dev<br />
</code></p>
<p>y recien instalar fxruby</p>
<p><code><br />
sudo gem install fxruby<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fallinglab.com/2008/11/02/instalar-fxruby-en-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>JRuby 1.1 en NetBeans 6.1</title>
		<link>http://www.fallinglab.com/2008/08/16/jruby-11-en-netbeans-61/</link>
		<comments>http://www.fallinglab.com/2008/08/16/jruby-11-en-netbeans-61/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 16:49:00 +0000</pubDate>
		<dc:creator>gustavoe</dc:creator>
				<category><![CDATA[JRuby]]></category>
		<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.fallinglab.com/2008/08/16/jruby-11-en-netbeans-61/</guid>
		<description><![CDATA[La instalación de JRuby 1.1 incluida en NetBeans 6.1 no funciona en la instalación por defecto, al menos en una gran cantidad de casos. Si bien para la mayoría puede funcionar la alternativa de usar la instalación estándar de Ruby, esto se puede arreglar de forma sencilla, entonces podremos elegir cualquiera de los dos entornos [...]]]></description>
			<content:encoded><![CDATA[<p>La instalación de JRuby 1.1 incluida en NetBeans 6.1 no funciona en la instalación por defecto, al menos en una gran cantidad de casos. Si bien para la mayoría puede funcionar la alternativa de usar la instalación estándar de Ruby, esto se puede arreglar de forma sencilla, entonces podremos elegir cualquiera de los dos entornos para nuestros proyectos.</p>
<p><code><br />
# renombrar la carpeta en el perfil<br />
mv ~/.netbeans/6.1/jruby-1.1 ~/.netbeans/6.1/jruby-1.1.old<br />
</code></p>
<p><code><br />
# crear un link simbólico a la instalación de jruby<br />
ln -s /usr/local/netbeans-6.1/ruby2/jruby-1.1 ~/.netbeans/6.1/jruby-1.1<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fallinglab.com/2008/08/16/jruby-11-en-netbeans-61/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

