<?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>Meta Bates &#187; thin</title>
	<atom:link href="http://www.metabates.com/tag/thin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.metabates.com</link>
	<description>The technical ramblings of Mark Bates.</description>
	<lastBuildDate>Wed, 01 Feb 2012 16:25:34 +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>Release 0.8.2</title>
		<link>http://www.metabates.com/2008/11/30/release-082/</link>
		<comments>http://www.metabates.com/2008/11/30/release-082/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 02:57:12 +0000</pubDate>
		<dc:creator>Mark Bates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[active record]]></category>
		<category><![CDATA[addressable]]></category>
		<category><![CDATA[data mapper]]></category>
		<category><![CDATA[deferred? routes]]></category>
		<category><![CDATA[ebb]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[Ezra Zygmuntowicz]]></category>
		<category><![CDATA[facets]]></category>
		<category><![CDATA[gems]]></category>
		<category><![CDATA[haml]]></category>
		<category><![CDATA[mack]]></category>
		<category><![CDATA[merb]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[rspec]]></category>
		<category><![CDATA[thin]]></category>

		<guid isPermaLink="false">http://www.mackframework.com/?p=206</guid>
		<description><![CDATA[Hey there folks, sorry for the long wait for this release, but it&#8217;s here. It&#8217;s been a long November for yours truly. I&#8217;ve had to find a new job. I&#8217;ve had pneumonia. We, at least in America, have celebrated Thanksgiving. And, of course, who can forget RubyConf 2008? So with that said, what&#8217;s in 0.8.2? [...]]]></description>
			<content:encoded><![CDATA[<p>Hey there folks, sorry for the long wait for this release, but it&#8217;s here. It&#8217;s been a long November for yours truly. I&#8217;ve had to find a new job. I&#8217;ve had pneumonia. We, at least in America, have celebrated Thanksgiving. And, of course, who can forget RubyConf 2008?</p>
<p>So with that said, what&#8217;s in 0.8.2? Honestly, not a whole lot. There are a couple of bug fixes, a button_to_remote (think submit_to_remote in Rails) helper, and deferred routes. More on deferred routes in a moment, as it&#8217;s actually a pretty cool feature that only Mack and Merb share. And finally there is bundled gems.</p>
<h3>Bundled Gems</h3>
<p>What do I mean I say &#8216;bundled gems&#8217;? Well, because of the rather large number of gems that get installed with Mack, and because of some gem version dependency issues, Mack is now bundling it&#8217;s third party dependency gems inside itself. For example, mack-facets used to rely on the gems &#8216;facets&#8217; and &#8216;english&#8217;. Those gems are now bundled inside the mack-facets gem and now longer need to be downloaded and installed by end users. This should make installing Mack super easy. It should also make dealing with having multiple versions of Mack installed on your system easier to deal with and maintain.</p>
<h3>Deferred? Routes</h3>
<p>So what are deferred routes? Ezra wrote a really great write up back in <a href="http://brainspl.at/articles/2008/04/18/deferred-requests-with-merb-ebb-and-thin" target="_blank">April</a>. The idea is simple, with newer web servers such as Thin and Ebb, you can tell them to spawn a new thread to handle particular requests, such as long running processes like file uploads. This can really help speed things up as server can process regular requests using an event machine model, which is very fast, but can be really slow and block the server for longer processes. Now those processes can spawn into their own threads and not block the server.</p>
<p>In Mack 0.8.2 you can mark your routes with a deferred? =&gt; true option which will trigger this behavior. It&#8217;s much more advanced than the similar feature that can be found in Merb, which requires a separate configuration for your deferred actions, and the urls have to be &#8216;hard coded&#8217;. Mack let&#8217;s you use all the dynamic power of your routes, like you would want to. It&#8217;s just another option on the route itself. For a great tutorial on using deferred routes, check out the following page on www.mackery.com:</p>
<p><a href="http://www.mackery.com/routing/deferred_routes">http://www.mackery.com/routing/deferred_routes</a></p>
<h3>Upgraded Dependencies</h3>
<p>A few gems have been upgraded as part of this release, the big ones include DataMapper to 0.9.7, ActiveRecord to 2.2.2, and Haml to 2.0.4.</p>
<p>Changelog:</p>
<ul>
<li>[#237] Fixed render :rjs throws errors</li>
<li>[#236] Upgraded to ActiveRecord 2.2.2</li>
<li>[#235] Upgraded to DataMapper 0.9.7</li>
<li>[#230] Upgraded to facets 2.4.5</li>
<li>[#229] Upgraded to english 0.3.1</li>
<li>[#227] Removed WEBrick logging</li>
<li>[#226] Bundled gems.</li>
<li>[#225] Removed dependency on Thin</li>
<li>[#223] Fixed mackery console fails</li>
<li>[#148] Added button_to_remote helper method.</li>
<li>[#16] Added deferred? routes.</li>
<li>gem: active_record 2.2.2</li>
<li>gem: data_mapper 0.9.7</li>
<li>gem: addressable 2.0.0</li>
<li>gem: facets 2.4.5</li>
<li>gem: english 0.3.1</li>
<li>gem: rspec 1.1.11</li>
<li>gem: haml 2.0.4</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.metabates.com/2008/11/30/release-082/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Release 0.5.5.4</title>
		<link>http://www.metabates.com/2008/06/10/release-0554/</link>
		<comments>http://www.metabates.com/2008/06/10/release-0554/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 12:04:24 +0000</pubDate>
		<dc:creator>Mark Bates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[andre ludwig]]></category>
		<category><![CDATA[mack]]></category>
		<category><![CDATA[mod_rails]]></category>
		<category><![CDATA[mongrel]]></category>
		<category><![CDATA[passenger]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[saji]]></category>
		<category><![CDATA[thin]]></category>

		<guid isPermaLink="false">http://www.mackframework.com/?p=105</guid>
		<description><![CDATA[This is actually a combined post about 0.5.5.3 and 0.5.5.4. They are both small patch releases, but they both address some pretty big problems. 0.5.5.3: The new version of Passenger (aka mod_rails) now has support for Rack based applications. In their documentation they show how to use a Mack app with Passenger. The documentation is [...]]]></description>
			<content:encoded><![CDATA[<p>This is actually a combined post about 0.5.5.3 and 0.5.5.4. They are both small patch releases, but they both address some pretty big problems.</p>
<p><strong>0.5.5.3:</strong></p>
<p>The new version of Passenger (aka mod_rails) now has support for Rack based applications. In their documentation they show how to use a Mack app with Passenger. The documentation is based on the yet to be released Thin adapter. With that said, both of those systems use a piece of Mack that&#8217;s no longer there. Because of that I&#8217;ve restored the small section of code, to make sure those two systems work with Mack. Which is great news.</p>
<p>On some flavors of Unix when you do a Dir.glob you don&#8217;t necessarily get back an ordered list of files. Because of that some people we&#8217;re getting uninitializedÂ constant errors. This has also been addressed in 0.5.5.3.</p>
<p><strong>0.5.5.4:</strong></p>
<p>A couple of people have reported issues where they were getting the following error even with the most simple application:</p>
<p>&#8220;Rack::Lint::LintError: env missing required key QUERY_STRING&#8221;</p>
<p>A Mack supporter by the name of Andre Ludwig stepped up to help me try and figure out the problem. I couldn&#8217;t reproduce it on the machines I have access to, I suppose that goes without saying, because I could&#8217;ve reproduced it, I would&#8217;ve fixed it sooner. Anyway, Andre stepped up with both his time, spending most of his Sunday online with me, but also with his hardware. Andre opened up his server to me so I could go in there directly and play with things until I found the problem.</p>
<p>Sure enough, once I got in there, it didn&#8217;t take me too long to figure out what the problem was. It turned out to be a conflict between the latest version of Mongrel (1.1.5) and the latest version of Thin (0.8.1). A simple rewrite of the rake server task and voila! problem solved.</p>
<p>So I would like to say thanks so much to Andre Ludwig for all his time and his hardware. I would also like to thank Saji for originally reporting the problem and for doing some troubleshooting for me as well.</p>
<p>As the community grows I can&#8217;t help but be awed by not only how much people are loving what Mack is doing, but also by the communities willingness to get involved and help out. Thanks so much everyone!</p>
<p>Changelog 0.5.5.4:</p>
<ul>
<li>Fixed the damn Lint error some people were facing!</li>
</ul>
<div>
<p>Changelog 0.5.5.3:</p>
<ul>
<li>Restored compatibility with Passenger and the next version of Thin.</li>
<li>Fixed &#8216;requires&#8217; out of order in certain flavors or unix. Hopefully.</li>
</ul>
<p>Â </p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.metabates.com/2008/06/10/release-0554/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Release 0.4.7</title>
		<link>http://www.metabates.com/2008/04/25/release-047/</link>
		<comments>http://www.metabates.com/2008/04/25/release-047/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 18:39:32 +0000</pubDate>
		<dc:creator>Mark Bates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[darsono sutedja]]></category>
		<category><![CDATA[data mapper]]></category>
		<category><![CDATA[file uploads]]></category>
		<category><![CDATA[genosaurus]]></category>
		<category><![CDATA[mack]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[thin]]></category>

		<guid isPermaLink="false">http://www.mackframework.com/?p=84</guid>
		<description><![CDATA[0.4.7 is a MUST have release. It fixes a few good bugs, like the ability to upload files now works! Plus it introduces a few nice little goodies. File uploads are now pretty easy to do. There&#8217;s a new Mack::Request::UploadedFile that helps to wrap the Hash that Rack gives you when you upload a file. [...]]]></description>
			<content:encoded><![CDATA[<p>0.4.7 is a MUST have release. It fixes a few good bugs, like the ability to upload files now works! Plus it introduces a few nice little goodies.</p>
<p>File uploads are now pretty easy to do. There&#8217;s a new Mack::Request::UploadedFile that helps to wrap the Hash that Rack gives you when you upload a file. Here&#8217;s a simple example of it being used:</p>
<pre>class UploadsController &lt; Mack::Controller::Base
Â  def create
Â    @my_new_file = request.file(:my_new_file)
Â    @my_new_file.save_to([MACK_PUBLIC, "uploaded_files", @my_new_file.file_name])
Â  end
end</pre>
<p>That&#8217;s it! That&#8217;s all you need to upload a file! I&#8217;m going to add file uploads to the blog demo over the next few days.</p>
<p>You can now do &#8216;namespaced&#8217; routes, such as Admin::UserController. You can very simply map them in your routes.rb as:</p>
<pre>r.resource "admin/users"</pre>
<p>There&#8217;s now a new rake task, generator:list, that shows all the generators available to your app.</p>
<p>Darsono Sutedja gets the prize for being the first person, other than myself, to contribute to Mack. Thanks a ton Darsono! It&#8217;s much appreciated.</p>
<p>All of the generators now use the Genosaurus generator system. Not really that exciting, but it makes for a nice, cleaner code base.</p>
<p>There&#8217;s a few other things in there as well. The changelog below has a few more things. Enjoy!</p>
<p>Changelog:</p>
<ul>
<li>Added Mack::Request::UploadFile class to make dealing with file uploads easy.</li>
<li>Fixed bug where if a controller didn&#8217;t exist it wasn&#8217;t checking the public directory.</li>
<li>Generated DataMapper models no longer extend DataMapper::Base, but rather &#8216;include DataMapper::Persistence&#8217;. This corresponds to the 0.9.0 upcoming release of DataMapper.</li>
<li>Fixed a bug in request.params that was making file uploads into strings.</li>
<li>Namespaced resourced routes, such as Admin::UserController, now work.</li>
<li>Added rake generator:list task to list all the available generators.</li>
<li>scaffold generator now creates a stub functional test.</li>
<li>model generator now creates a stub unit test.</li>
<li>Rake tasks in plugins now show up in the Rake tasks list.</li>
<li>All generators, including the &#8216;mack&#8217; binary are now using Genosaurus.</li>
<li>[dsutedja] initializer will load MACK_APP/controllers/default_controller.rb if it exists</li>
<li>[dsutedja] added link_image_to and image_tag to html helper.</li>
<li>gem: thin 0.8.1</li>
<li>gem: genosaurus 1.1.1</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.metabates.com/2008/04/25/release-047/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thin Adapter</title>
		<link>http://www.metabates.com/2008/04/23/thin-adapter/</link>
		<comments>http://www.metabates.com/2008/04/23/thin-adapter/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 12:29:18 +0000</pubDate>
		<dc:creator>Mark Bates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[mack]]></category>
		<category><![CDATA[thin]]></category>

		<guid isPermaLink="false">http://www.mackframework.com/?p=81</guid>
		<description><![CDATA[So yesterday I committed a Mack adapter to Thin. What does this mean? It means that in the next release of Thin there will native support for Mack. That means We can get rid of those silly config/thin.yml and config/thin.ru files. It also means we can make really easy use of all that the &#8216;thin&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p>So yesterday I committed a Mack adapter to <a href="http://github.com/macournoyer/thin/commit/ce6d00751644715c82044d1194a34fc61ca0823d" target="_blank">Thin</a>. What does this mean? It means that in the next release of Thin there will native support for Mack. That means We can get rid of those silly config/thin.yml and config/thin.ru files. It also means we can make really easy use of all that the &#8216;thin&#8217; command line executable has to offer.</p>
<p>When the next version of Thin comes out, there will be an update to Mack to support these changes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.metabates.com/2008/04/23/thin-adapter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Release 0.4.6</title>
		<link>http://www.metabates.com/2008/04/18/release-046/</link>
		<comments>http://www.metabates.com/2008/04/18/release-046/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 21:55:04 +0000</pubDate>
		<dc:creator>Mark Bates</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[erb]]></category>
		<category><![CDATA[erubis]]></category>
		<category><![CDATA[generators]]></category>
		<category><![CDATA[mack]]></category>
		<category><![CDATA[migrations]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[scaffold]]></category>
		<category><![CDATA[thin]]></category>

		<guid isPermaLink="false">http://www.mackframework.com/?p=80</guid>
		<description><![CDATA[This is a pretty cool release. First off Thin has been updated to 0.8.0, a rather nice, stable release. ERB has been replaced with ErubisÂ to give a significant improvement in speed, which, after all is one of Mack&#8217;s most important traits.Â  There&#8217;s been a general overhaul of the generators included with Mack. Mostly, cleaning them [...]]]></description>
			<content:encoded><![CDATA[<p>This is a pretty cool release. First off Thin has been updated to 0.8.0, a rather nice, stable release. ERB has been replaced with <a href="http://www.kuwata-lab.com/erubis/" target="_blank">Erubis</a>Â to give a significant improvement in speed, which, after all is one of Mack&#8217;s most important traits.Â </p>
<p>There&#8217;s been a general overhaul of the generators included with Mack. Mostly, cleaning them up. With that said things like the scaffold, model, and migration generators have been updated to do what a lot of people have been asking for, that is take a &#8216;cols&#8217; parameter and build out the generated code corrrectly. This really makes life, very, very simple.</p>
<p>There will be a re-written &#8216;blog&#8217; tutorial coming out soon to make use of this, as well as migration support that&#8217;s now part of Mack.</p>
<p>Very exciting stuff! Enjoy!</p>
<p>Changelog:</p>
<ul>
<li>Mack now uses Erubis, http://www.kuwata-lab.com/erubis/, for it&#8217;s rendering engine instead of ERB. This makes Mack even faster now! Yippie!</li>
<li>Added rake generate:model name=&lt;model_name&gt; (optional: cols=&lt;col_1&gt;:&lt;col_1_type&gt;,&lt;col_2&gt;:&lt;col_2_type&gt;) This will also create a migration for you.</li>
<li>Updated rake generate:migration name=&lt;model_name&gt; (optional: cols=&lt;col_1&gt;:&lt;col_1_type&gt;,&lt;col_2&gt;:&lt;col_2_type&gt;) This will create the proper table migration for you.</li>
<li>Updated rake generate:scaffold to use the ModelGenerator now.</li>
<li>ScaffoldGenerator now create input fields based on the type of columns, if any, passed in.</li>
<li>Overall general refactoring of the generator classes.</li>
<li>Fixed a bug with request logging not, well, logging.</li>
<li>gem: erubis 2.5.0</li>
<li>gem: thin 0.8.0</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.metabates.com/2008/04/18/release-046/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Release 0.0.6.2</title>
		<link>http://www.metabates.com/2008/02/29/release-0062/</link>
		<comments>http://www.metabates.com/2008/02/29/release-0062/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 22:32:27 +0000</pubDate>
		<dc:creator>Mark Bates</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[cachetastic]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[rubyforge]]></category>
		<category><![CDATA[thin]]></category>

		<guid isPermaLink="false">http://www.mackframework.com/2008/02/29/release-0062/</guid>
		<description><![CDATA[Please allow for mirror prorogation.Â  Thanks to Matt Todd for finding the first official Mack bug! Strangely enough, I actually welcome people finding bugs in Mack. It only serves to make it a better framework. If you find a bug, please head on over to RubyForge and submit a ticket for it, and I&#8217;ll do [...]]]></description>
			<content:encoded><![CDATA[<p>Please allow for mirror prorogation.Â  Thanks to <a href="http://maraby.org/post/27611841" target="_blank">Matt Todd</a> for finding the first official Mack bug! Strangely enough, I actually welcome people finding bugs in Mack. It only serves to make it a better framework.</p>
<p>If you find a bug, please head on over to <a href="http://rubyforge.org/tracker/?group_id=4405" target="_blank">RubyForge</a> and submit a ticket for it, and I&#8217;ll do my best to turn it around as quick as possible.</p>
<p>Changelog:</p>
<ul>
<li>gem: thin 0.7.0</li>
</ul>
<ul>
<li>gem: cachetastic 1.3.1</li>
</ul>
<ul>
<li>Fixed 18487: #convert_security_of_methods ignores new_level param</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.metabates.com/2008/02/29/release-0062/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The History Of Mack, pt. 3</title>
		<link>http://www.metabates.com/2008/02/27/the-history-of-mack-pt-3/</link>
		<comments>http://www.metabates.com/2008/02/27/the-history-of-mack-pt-3/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 16:35:30 +0000</pubDate>
		<dc:creator>Mark Bates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[active record]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[data mapper]]></category>
		<category><![CDATA[mack]]></category>
		<category><![CDATA[orm]]></category>
		<category><![CDATA[rack]]></category>
		<category><![CDATA[thin]]></category>

		<guid isPermaLink="false">http://www.mackframework.com/2008/02/27/the-history-of-mack-pt-3/</guid>
		<description><![CDATA[Why did I fall in love with Rack and Thin? That&#8217;s easy. I love Thin because it lives up to it&#8217;s name. It&#8217;s thin. It&#8217;s incredibly fast, has great clustering support built in, and is the next generation of Ruby web servers. It kicks Mongrel&#8217;s ass and it takes names. I&#8217;m sure if you asked [...]]]></description>
			<content:encoded><![CDATA[<p>Why did I fall in love with <a href="http://rack.rubyforge.org/" target="_blank">Rack</a> and <a href="http://code.macournoyer.com/thin/" target="_blank">Thin</a>? That&#8217;s easy. I love Thin because it lives up to it&#8217;s name. It&#8217;s thin. It&#8217;s incredibly fast, has great clustering support built in, and is the next generation of Ruby web servers. It kicks Mongrel&#8217;s ass and it takes names. I&#8217;m sure if you asked Zed Shaw he would have no problem with Thin replacing Mongrel.</p>
<p>Rack I love because of it&#8217;s simplicity, and it&#8217;s uniformity. It&#8217;s setting out to create a standard for which any Ruby web application can very easily be plugged into a web server. By abstracting that layer out it makes it easier for developers to focus on writing great apps, and not having to worry about how to deploy them.</p>
<p>Once I started to play around with Rack it didn&#8217;t take me more then a few minutes to have a very simple site up and running.</p>
<p>Within a few days I had the basics of a Rails like framework rocking, and within two weeks I had the core of Mack coded, and that&#8217;s where I am today.</p>
<p>Mack is a very fast, stable, and extensible framework. It&#8217;s designed to be lean and mean and not be all things to all people. It&#8217;s meant to get you started on the right path, but to let you have your own opinions. It&#8217;s designed to help you build portal applications simply and efficiently, and deploy with just as much ease.</p>
<p>Mack is ORM agnostic, although it does have some special hooks for ActiveRecord and DataMapper. It does not force you to use a certain type of system for doing web services, although it does promote a RESTful lifestyle. Configuration and setup is system, but there&#8217;s no reason for you to use it as is out of the box.</p>
<p>Mack encourages experimentation, andÂ  it hopes that you customize it make it your own.</p>
<p>Go and scour through the <a href="http://api.mackframework.com/" target="_blank">API</a> and then download the gem and start building your next generation application the way YOU want to, not the way someone else tells you you have to.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.metabates.com/2008/02/27/the-history-of-mack-pt-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The History Of Mack, pt. 2</title>
		<link>http://www.metabates.com/2008/02/26/the-history-of-mack-pt-2/</link>
		<comments>http://www.metabates.com/2008/02/26/the-history-of-mack-pt-2/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 01:37:07 +0000</pubDate>
		<dc:creator>Mark Bates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[mack]]></category>
		<category><![CDATA[menderchuck]]></category>
		<category><![CDATA[merb]]></category>
		<category><![CDATA[mongrel]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[rake]]></category>
		<category><![CDATA[ramaze]]></category>
		<category><![CDATA[thin]]></category>

		<guid isPermaLink="false">http://www.mackframework.com/2008/02/26/the-history-of-mack-pt-2/</guid>
		<description><![CDATA[After two years of developing Menderchuck using Rails, I sat down with the VP of Development and the Director of Development and we took at a look at what the future of the company. We reviewed some of the stuff the business would like to build and where the CEO saw the company headed, and [...]]]></description>
			<content:encoded><![CDATA[<p>After two years of developing Menderchuck using Rails, I sat down with the VP of Development and the Director of Development and we took at a look at what the future of the company. We reviewed some of the stuff the business would like to build and where the CEO saw the company headed, and we looked at the technologies we were using and determined that it was time to investigate alternatives.</p>
<p>The first things to come under the microscope were Rails/Mongrel. As previously stated we found Rails to be a bit too opinionated for our use. One of the big jokes within the dev team was that I was basically rewriting Rails one section at a time. As sad as that joke is, it&#8217;s partially true.</p>
<p>I started to investigate other frameworks, particularly Merb and Ramaze, both of which are great frameworks. Both are lightweight and fast, and are a great alternative to Rails. But, they both didn&#8217;t quite offer what Menderchuck needed to grow into the future.</p>
<p>Menderchuck needed a platform that was fast and scalable. We needed something that would allow us to be a portal application. We needed something that was easy to deploy. We wanted to be able to build/deploy separate applications and have them &#8216;automagically&#8217; linked together. And most importantly we needed something very configurable, and less opinionated.</p>
<p>In the search for a framework utopia, I came across two technologies I really fell in love with, <a href="http://rack.rubyforge.org/" target="_blank">Rack</a> and <a href="http://code.macournoyer.com/thin/" target="_blank">Thin</a>.</p>
<p>(More to come&#8230;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.metabates.com/2008/02/26/the-history-of-mack-pt-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.640 seconds -->

