<?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>Running with Rails - Dev Blog not only for Rails fanatics</title>
	<atom:link href="http://dev.mensfeld.pl/feed/" rel="self" type="application/rss+xml" />
	<link>http://dev.mensfeld.pl</link>
	<description>Mostly Ruby on Rails - but not only! Also so Python, PHP and Linux admin stuff</description>
	<lastBuildDate>Sat, 12 May 2012 14:15:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>RVM, Ruby 1.9.3-p194, ruby-debugger and &#8220;You need to install ruby-debug&#8221; on Ubuntu 11.10</title>
		<link>http://dev.mensfeld.pl/2012/05/rvm-ruby-1-9-3-p194-ruby-debugger-and-you-need-to-install-ruby-debug-on-ubuntu-11-10/</link>
		<comments>http://dev.mensfeld.pl/2012/05/rvm-ruby-1-9-3-p194-ruby-debugger-and-you-need-to-install-ruby-debug-on-ubuntu-11-10/#comments</comments>
		<pubDate>Sat, 12 May 2012 11:17:04 +0000</pubDate>
		<dc:creator>Maciej Mensfeld</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ruby 1.9]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[ruby version manager]]></category>
		<category><![CDATA[RVM]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dev.mensfeld.pl/?p=1918</guid>
		<description><![CDATA[Recently I&#8217;ve been upgrading my RVM and Ruby versions. After upgrade I&#8217;ve encountered a problem connected to ruby-debugger. When starting Rails server I always ended with such a message: # Edit: this solutions fixes also this problem: Ruby-debbug doesn&#8217;t work to well with Ruby 1.9, so I use following combination in my gemsets: Until now, [...]]]></description>
		<wfw:commentRss>http://dev.mensfeld.pl/2012/05/rvm-ruby-1-9-3-p194-ruby-debugger-and-you-need-to-install-ruby-debug-on-ubuntu-11-10/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Rails routes: limiting access to application parts from certain domains (hosts)</title>
		<link>http://dev.mensfeld.pl/2012/04/rails-routes-limiting-access-to-application-parts-from-certain-domains-hosts/</link>
		<comments>http://dev.mensfeld.pl/2012/04/rails-routes-limiting-access-to-application-parts-from-certain-domains-hosts/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 18:58:31 +0000</pubDate>
		<dc:creator>Maciej Mensfeld</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Rails3]]></category>
		<category><![CDATA[Rails3.1]]></category>
		<category><![CDATA[RoR]]></category>
		<category><![CDATA[routes]]></category>
		<category><![CDATA[routing]]></category>
		<category><![CDATA[routing error]]></category>
		<category><![CDATA[Ruby 1.8.7]]></category>
		<category><![CDATA[Ruby 1.9]]></category>
		<category><![CDATA[Ruby 1.9.2]]></category>
		<category><![CDATA[Ruby 1.9.3]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://dev.mensfeld.pl/?p=1899</guid>
		<description><![CDATA[Sometimes we want to handle different parts of a single application from different domains. A good example of such an approach is when we have a scope containing our API. Wouldn&#8217;t it be great if it could be served from a different domain than the rest of the application? Of course yes! Approach like this [...]]]></description>
		<wfw:commentRss>http://dev.mensfeld.pl/2012/04/rails-routes-limiting-access-to-application-parts-from-certain-domains-hosts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NoMethodError: undefined method `split&#8217; for true:TrueClass</title>
		<link>http://dev.mensfeld.pl/2012/04/nomethoderror-undefined-method-split-for-truetrueclass/</link>
		<comments>http://dev.mensfeld.pl/2012/04/nomethoderror-undefined-method-split-for-truetrueclass/#comments</comments>
		<pubDate>Sun, 08 Apr 2012 18:25:25 +0000</pubDate>
		<dc:creator>Maciej Mensfeld</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Rails3]]></category>
		<category><![CDATA[Rails3.1]]></category>
		<category><![CDATA[RoR]]></category>
		<category><![CDATA[routes]]></category>
		<category><![CDATA[routing]]></category>
		<category><![CDATA[routing error]]></category>
		<category><![CDATA[Ruby 1.8.7]]></category>
		<category><![CDATA[Ruby 1.9]]></category>
		<category><![CDATA[Ruby 1.9.2]]></category>
		<category><![CDATA[Ruby 1.9.3]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://dev.mensfeld.pl/?p=1893</guid>
		<description><![CDATA[Weird errors occurs: when trying to perform get request in functional tests: So WTF? This type of error occurs when we have a route with :format: but the request is performed without :format option. To fix it, just add :format into your request:]]></description>
		<wfw:commentRss>http://dev.mensfeld.pl/2012/04/nomethoderror-undefined-method-split-for-truetrueclass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mocking Doorkeeper access token with Mocha</title>
		<link>http://dev.mensfeld.pl/2012/04/mocking-doorkeeper-access-token-with-mocha/</link>
		<comments>http://dev.mensfeld.pl/2012/04/mocking-doorkeeper-access-token-with-mocha/#comments</comments>
		<pubDate>Sun, 08 Apr 2012 17:08:39 +0000</pubDate>
		<dc:creator>Maciej Mensfeld</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[authorization]]></category>
		<category><![CDATA[Doorkeeper]]></category>
		<category><![CDATA[Mocha]]></category>
		<category><![CDATA[Rails3.2]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://dev.mensfeld.pl/?p=1882</guid>
		<description><![CDATA[Recently I&#8217;ve been testing some stuff behind Doorkeeper and I needed to mock Doorkeeper token to return a stub. In older Doorkeeper versions it was done like this: However in a new Doorkeeper version, the&#8217;ve changed something and my mockings stopped working. So if you use newest Doorkeeper version, the mock should look like this:]]></description>
		<wfw:commentRss>http://dev.mensfeld.pl/2012/04/mocking-doorkeeper-access-token-with-mocha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding rel=&#8221;nofollow&#8221; to all the links in your comments, news, posts, messages in Ruby on Rails</title>
		<link>http://dev.mensfeld.pl/2012/03/adding-rel-nofollow-to-all-the-links-in-your-commentsnewspostsmessages/</link>
		<comments>http://dev.mensfeld.pl/2012/03/adding-rel-nofollow-to-all-the-links-in-your-commentsnewspostsmessages/#comments</comments>
		<pubDate>Sat, 10 Mar 2012 16:53:18 +0000</pubDate>
		<dc:creator>Maciej Mensfeld</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[anchor]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[nofollow]]></category>
		<category><![CDATA[Nokogiri]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Rails3]]></category>
		<category><![CDATA[Rails3.1]]></category>
		<category><![CDATA[RoR]]></category>
		<category><![CDATA[Ruby 1.8.7]]></category>
		<category><![CDATA[Ruby 1.9]]></category>
		<category><![CDATA[Ruby 1.9.2]]></category>
		<category><![CDATA[Ruby 1.9.3]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://dev.mensfeld.pl/?p=1861</guid>
		<description><![CDATA[SEO, SEO, SEO After migrating somewhere like 600 news messages from my old PHP CMS to a Susanoo (at Naruto Shippuuden Senpuu website), I&#8217;ve realized that a lot of them have an external links to other websites. Most of them should have rel=&#8221;nofollow&#8221;,but hey, who cared about SEO 8 years ago :) Fortunately there is [...]]]></description>
		<wfw:commentRss>http://dev.mensfeld.pl/2012/03/adding-rel-nofollow-to-all-the-links-in-your-commentsnewspostsmessages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simplifying iptables management on a Debian (Squeeze) server</title>
		<link>http://dev.mensfeld.pl/2012/02/simplifying-iptables-management-on-a-debian-squeeze-server/</link>
		<comments>http://dev.mensfeld.pl/2012/02/simplifying-iptables-management-on-a-debian-squeeze-server/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 14:34:43 +0000</pubDate>
		<dc:creator>Maciej Mensfeld</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[nmap]]></category>
		<category><![CDATA[ports]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://dev.mensfeld.pl/?p=1846</guid>
		<description><![CDATA[My basic management concept for iptables (easy to maintain when you&#8217;re the owner and administrator of a server). I don&#8217;t like native iptables management way, so with little help from Google I&#8217;ve recently figured out an alternative way to handle rules loading and applying. Here&#8217;s how it&#8217;s done. First, create (as a su) iptables file [...]]]></description>
		<wfw:commentRss>http://dev.mensfeld.pl/2012/02/simplifying-iptables-management-on-a-debian-squeeze-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Making Munin work with Mysql on Debian</title>
		<link>http://dev.mensfeld.pl/2012/02/making-munin-work-with-mysql-on-debian/</link>
		<comments>http://dev.mensfeld.pl/2012/02/making-munin-work-with-mysql-on-debian/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 22:56:43 +0000</pubDate>
		<dc:creator>Maciej Mensfeld</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[Munin]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[Squeeze]]></category>

		<guid isPermaLink="false">http://dev.mensfeld.pl/?p=1826</guid>
		<description><![CDATA[Easier than I thought (all stuff as SU or using SUDO): First we need to install some Mysql-Munin perl libraries: Also some Perl stuff will be needed: Next let&#8217;s activate Munin Mysql plugin: Create a user for a Mysql database (so Munin will be able to get stats as this user): Edit /etc/munin/plugin-conf.d/munin-node file and [...]]]></description>
		<wfw:commentRss>http://dev.mensfeld.pl/2012/02/making-munin-work-with-mysql-on-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading to Rails 3.2.0 from Rails 3.1.3</title>
		<link>http://dev.mensfeld.pl/2012/01/upgrading-to-rails-3-2-0-from-rails-3-1-3/</link>
		<comments>http://dev.mensfeld.pl/2012/01/upgrading-to-rails-3-2-0-from-rails-3-1-3/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 22:15:26 +0000</pubDate>
		<dc:creator>Maciej Mensfeld</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Rails3.1]]></category>
		<category><![CDATA[Rails3.2]]></category>
		<category><![CDATA[Ruby 1.8.7]]></category>
		<category><![CDATA[Ruby 1.9.2]]></category>
		<category><![CDATA[Ruby 1.9.3]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://dev.mensfeld.pl/?p=1806</guid>
		<description><![CDATA[Yup, finally it&#8217;s here! :) Switching Susanoo (Senpuu v5) to 3.2 wasn&#8217;t so hard. Took me about 5 hours. Why so long? Well because I had to fix my &#8220;special&#8221; Paperclip version and make so additional table names changes. All the steps are presented below. Enjoy. Gemfile Weird stuff I&#8217;ve got some problems with my [...]]]></description>
		<wfw:commentRss>http://dev.mensfeld.pl/2012/01/upgrading-to-rails-3-2-0-from-rails-3-1-3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Converting nested hash into HTTP url params hash version in Ruby</title>
		<link>http://dev.mensfeld.pl/2012/01/converting-nested-hash-into-http-url-params-hash-version-in-ruby/</link>
		<comments>http://dev.mensfeld.pl/2012/01/converting-nested-hash-into-http-url-params-hash-version-in-ruby/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 19:00:52 +0000</pubDate>
		<dc:creator>Maciej Mensfeld</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[hash]]></category>
		<category><![CDATA[hashes]]></category>
		<category><![CDATA[Ruby 1.9.2]]></category>
		<category><![CDATA[Ruby 1.9.3]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://dev.mensfeld.pl/?p=1799</guid>
		<description><![CDATA[We cannot send nested hash as a param in HTTP requests. For example, when we would like to send something like this: It would be (or should be) mapped like this: /url/?key=value&#038;nested=%7B%3Anest%3D%3E%5C%22value%5C%22%7D Doesn&#8217;t look to good ;) However there is a simple way to convert a nested hash into a params acceptable form. We can [...]]]></description>
		<wfw:commentRss>http://dev.mensfeld.pl/2012/01/converting-nested-hash-into-http-url-params-hash-version-in-ruby/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Using Ruby and Zip library to compress directories and read single file from compressed collection</title>
		<link>http://dev.mensfeld.pl/2011/12/using-ruby-and-zip-library-to-compress-directories-and-read-single-file-from-compressed-collection/</link>
		<comments>http://dev.mensfeld.pl/2011/12/using-ruby-and-zip-library-to-compress-directories-and-read-single-file-from-compressed-collection/#comments</comments>
		<pubDate>Sun, 18 Dec 2011 16:36:28 +0000</pubDate>
		<dc:creator>Maciej Mensfeld</dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[compress]]></category>
		<category><![CDATA[compression]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[Ruby 1.8.7]]></category>
		<category><![CDATA[Ruby 1.9]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[unzip]]></category>
		<category><![CDATA[zip]]></category>

		<guid isPermaLink="false">http://dev.mensfeld.pl/?p=1780</guid>
		<description><![CDATA[I have an application in which I store a lot of data in text files.Recently I&#8217;ve needed to compress this data into datasets and send it to a browser. I&#8217;ve also decided to remove uncompressed data and leave only zipped files. The mayor advantage is HDD consumption &#8211; 90% less space needed to store data! [...]]]></description>
		<wfw:commentRss>http://dev.mensfeld.pl/2011/12/using-ruby-and-zip-library-to-compress-directories-and-read-single-file-from-compressed-collection/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

