<?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>Sean Behan&#039;s Web Development Portfolio and Blog &#187; getting started</title>
	<atom:link href="http://seanbehan.com/tag/getting-started/feed/" rel="self" type="application/rss+xml" />
	<link>http://seanbehan.com</link>
	<description>Web Development, Wordpress, Moodle, Ruby on Rails and Design in Burlington, Vermont</description>
	<lastBuildDate>Fri, 30 Jul 2010 17:17:12 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Hello Rack</title>
		<link>http://seanbehan.com/ruby/hello-rack/</link>
		<comments>http://seanbehan.com/ruby/hello-rack/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 03:21:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ruby]]></category>
		<category><![CDATA[getting started]]></category>
		<category><![CDATA[rack]]></category>

		<guid isPermaLink="false">http://seanbehan.com/?p=716</guid>
		<description><![CDATA[What is Rack?

Rack provides a minimal, modular and adaptable interface for developing web applications in Ruby. By wrapping HTTP requests and responses in the simplest way possible, it unifies and distills the API for web servers, web frameworks, and software in between (the so-called middleware) into a single method call.

- Rack API Docs

Create and name [...]


Related posts:<ol><li><a href='http://seanbehan.com/sinatra/deploy-sintra-app-on-ubuntu-using-apache2-and-phusion-passenger-module/' rel='bookmark' title='Permanent Link: Deploy Sintra App on Ubuntu Using Apache2 and Phusion Passenger Module'>Deploy Sintra App on Ubuntu Using Apache2 and Phusion Passenger Module</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>What is Rack?</p>
<blockquote><p>
Rack provides a minimal, modular and adaptable interface for developing web applications in Ruby. By wrapping HTTP requests and responses in the simplest way possible, it unifies and distills the API for web servers, web frameworks, and software in between (the so-called middleware) into a single method call.
</p></blockquote>
<p><a href="http://rack.rubyforge.org/doc">- Rack API Docs</a><br />
<br/><br />
Create and name your file config.ru If rack isn&#8217;t installed get it with this command</p>
<pre>gem install rack</pre>
<p>In your config.ru file </p>
<pre>
require 'rubygems'
require 'rack'

class HelloRack
  def call(env)
    [200, {"Content-Type" => "text/html"}, "Hello Rack!"]
  end
end

Rack::Handler::Mongrel.run HelloRack.new, <img src='http://seanbehan.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ort => 8888
</pre>
<p>Check out <a href="http://m.onkey.org/2008/11/17/ruby-on-rack-1">http://m.onkey.org/2008/11/17/ruby-on-rack-1</a></p>


<p>Related posts:<ol><li><a href='http://seanbehan.com/sinatra/deploy-sintra-app-on-ubuntu-using-apache2-and-phusion-passenger-module/' rel='bookmark' title='Permanent Link: Deploy Sintra App on Ubuntu Using Apache2 and Phusion Passenger Module'>Deploy Sintra App on Ubuntu Using Apache2 and Phusion Passenger Module</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seanbehan.com/ruby/hello-rack/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
