<?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>Vinsol - Leading Ruby on Rails Development and Consulting Firm in India &#187; openssl</title>
	<atom:link href="http://vinsol.com/blog/category/openssl/feed/" rel="self" type="application/rss+xml" />
	<link>http://vinsol.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 11 Jan 2012 06:07:52 +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>Ruby interface for OpenSSL</title>
		<link>http://vinsol.com/blog/2008/03/04/ruby-interface-for-openssl/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ruby-interface-for-openssl</link>
		<comments>http://vinsol.com/blog/2008/03/04/ruby-interface-for-openssl/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 00:57:20 +0000</pubDate>
		<dc:creator>SUR</dc:creator>
				<category><![CDATA[openssl]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://expressica.com/2008/03/04/ruby-interface-for-openssl/</guid>
		<description><![CDATA[If you have installed ruby using apt-get or if you have not mentioned the configuration option for openssl while installing from source, you can expect openssl will not work with ruby.
Here is the solution for the same&#8230;
Step 1
Install gcc and make(if you don&#8217;t have already on your box)

  sudo apt-get install gcc make

Step 2
Install [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>If you have installed ruby using apt-get or if you have not mentioned the configuration option for openssl while installing from source, you can expect openssl will not work with ruby.</p>
<p>Here is the solution for the same&#8230;</p>
<h4>Step 1</h4>
<p>Install gcc and make(if you don&#8217;t have already on your box)</p>
<textarea name="code" class="ruby:nocontrols:nogutter" cols="60" rows="10">
  sudo apt-get install gcc make
</textarea>
<h4>Step 2</h4>
<p>Install the system level OpenSSL and dev libraries</p>
<textarea name="code" class="ruby:nocontrols:nogutter" cols="60" rows="10">
  sudo apt-get install openssl libssl-dev
</textarea>
<h4>Step 3</h4>
<p>Install the ruby&#8217;s openssl interface to the system&#8217;s openssl</p>
<p>switch the directory to the ruby&#8217;s source code&#8217;s openssl</p>
<textarea name="code" class="ruby:nocontrols:nogutter" cols="60" rows="10">
  cd /usr/local/src/ruby1.8.6/ext/openssl
</textarea>
<p>install the ruby&#8217;s openssl interface</p>
<textarea name="code" class="ruby:nocontrols:nogutter" cols="60" rows="10">
  sudo ruby extconf.rb
  make
  make install
</textarea>
<p>try requiring the openssl in irb</p>
<textarea name="code" class="ruby:nocontrols:nogutter" cols="60" rows="10">
  require 'openssl'
</textarea>
<p>if returns true, installed successfully!</p>
]]></content:encoded>
			<wfw:commentRss>http://vinsol.com/blog/2008/03/04/ruby-interface-for-openssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

