<?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"
	>

<channel>
	<title>Amit Solanki</title>
	<atom:link href="http://www.amitsolanki.com/feed" rel="self" type="application/rss+xml" />
	<link>http://amitsolanki.com</link>
	<description>A Ruby On Rails Programmer from India</description>
	<pubDate>Mon, 29 Nov 2010 15:19:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Installing raspell gem with bundler on mac os x</title>
		<link>http://amitsolanki.com/2010/11/installing-raspell-gem-with-bundler-on-mac-os-x/</link>
		<comments>http://amitsolanki.com/2010/11/installing-raspell-gem-with-bundler-on-mac-os-x/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 15:17:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[bundle]]></category>

		<category><![CDATA[rubygems]]></category>

		<guid isPermaLink="false">http://amitsolanki.com/?p=422</guid>
		<description><![CDATA[If you are using bundler to manage gems in your rails application and need to install a gem which requires special flags to be made available for proper installation of that gem, you can use the bundle config command alongwith the the flags that need to be set.

bundle config build.raspell --with-opt-dir=/opt/local
bundle install

You can then run [...]]]></description>
		<wfw:commentRss>http://amitsolanki.com/2010/11/installing-raspell-gem-with-bundler-on-mac-os-x/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Undefined symbol: xsltLibxmlVersion - Ruby XSLT and CentOS</title>
		<link>http://amitsolanki.com/2010/04/undefined-symbol-xsltlibxmlversion-ruby-xslt-and-centos/</link>
		<comments>http://amitsolanki.com/2010/04/undefined-symbol-xsltlibxmlversion-ruby-xslt-and-centos/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 04:27:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://amitsolanki.com/?p=415</guid>
		<description><![CDATA[If you are facing the following error on your CentOS server:

require &#039;xml/xslt&#039;
LoadError: /usr/lib/ruby/gems/1.8/gems/ruby-xslt-0.9.6/lib/xml/xslt_lib.so: undefined symbol: xsltLibxmlVersion - /usr/lib/ruby/gems/1.8/gems/ruby-xslt-0.9.6/lib/xml/xslt_lib.so
	from /usr/lib/ruby/gems/1.8/gems/ruby-xslt-0.9.6/lib/xml/xslt_lib.so
	from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require&#039;
	from /usr/lib/ruby/gems/1.8/gems/ruby-xslt-0.9.6/lib/xml/xslt.rb:19
	from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:36:in `gem_original_require&#039;
	from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:36:in `require&#039;
	from (irb):1

Try reinstalling the following packages and gems:

yum reinstall -y libxml2 libxml2-devel libxslt libxslt-devel
ldconfig
gem uninstall libxml-ruby ruby-xslt
gem install libxml-ruby ruby-xslt

Don&#8217;t forget to run ldconfig command as root user. This command [...]]]></description>
		<wfw:commentRss>http://amitsolanki.com/2010/04/undefined-symbol-xsltlibxmlversion-ruby-xslt-and-centos/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Running delayed delta daemon in background for thinking sphinx</title>
		<link>http://amitsolanki.com/2010/04/running-delayed-delta-daemon-in-background-for-thinking-sphinx/</link>
		<comments>http://amitsolanki.com/2010/04/running-delayed-delta-daemon-in-background-for-thinking-sphinx/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 09:17:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://amitsolanki.com/?p=386</guid>
		<description><![CDATA[Thinking Sphinx is a rubygem which provides excellent search capabilities within your rails application. Unlike other search mechanism like acts_as_solr, thinking sphinx has one major limitation, entries do not automatically get indexed when a new record is created or an existing record is updated. To overcome this limitation, thinking sphinx has support for delta indexes. [...]]]></description>
		<wfw:commentRss>http://amitsolanki.com/2010/04/running-delayed-delta-daemon-in-background-for-thinking-sphinx/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Integrating Yahoo! BOSS with your rails application</title>
		<link>http://amitsolanki.com/2009/10/integrating-yahoo-boss-with-your-rails-application/</link>
		<comments>http://amitsolanki.com/2009/10/integrating-yahoo-boss-with-your-rails-application/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 06:15:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[rails]]></category>

		<category><![CDATA[yahoo boss]]></category>

		<guid isPermaLink="false">http://amitsolanki.com/?p=155</guid>
		<description><![CDATA[What is Yahoo! BOSS? Yahoo developer website cites it as:
&#8220;Yahoo! Search BOSS (Build your Own Search Service) is an initiative in Yahoo! Search to open up Yahoo!&#8217;s search infrastructure and enable third parties to build revolutionary search products leveraging their own data, content, technology, social graph, or other assets. This release includes Web, News, and [...]]]></description>
		<wfw:commentRss>http://amitsolanki.com/2009/10/integrating-yahoo-boss-with-your-rails-application/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Defining fixtures for table without model in rails</title>
		<link>http://amitsolanki.com/2009/10/defining-fixtures-for-table-without-model-in-rails/</link>
		<comments>http://amitsolanki.com/2009/10/defining-fixtures-for-table-without-model-in-rails/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 03:27:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://amitsolanki.com/?p=115</guid>
		<description><![CDATA[Few days back, I need to write rspec tests for one of my ongoing projects. I had a self referential association like this:

class User
  has_and_belongs_to_many :friends,
                        :class_name     [...]]]></description>
		<wfw:commentRss>http://amitsolanki.com/2009/10/defining-fixtures-for-table-without-model-in-rails/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

