<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/stylesheets/rss.css" type="text/css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Brainspl.at: Merb-0.9.1 Developer release</title>
    <link>http://www.brainspl.at/articles/2008/03/05/merb-0-9-1-developer-release</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>Brainspl.at</description>
    <item>
      <title>"Merb-0.9.1 Developer release" by Lobo tuerto</title>
      <description>When can we expect a guide for converting an existing Rails application to Merb?

Or at least a list of possible gotchas and such.</description>
      <pubDate>Thu, 03 Apr 2008 16:43:33 +0000</pubDate>
      <guid>urn:uuid:c608f41a-2944-4c03-a076-4782fedc8b75</guid>
      <link>http://www.brainspl.at/articles/2008/03/05/merb-0-9-1-developer-release#comment-4733</link>
    </item>
    <item>
      <title>"Merb-0.9.1 Developer release" by Dado</title>
      <description>I really wish merb had an active wiki and exp google group... please bring those asap!

thnx for a great framework</description>
      <pubDate>Tue, 11 Mar 2008 05:52:07 +0000</pubDate>
      <guid>urn:uuid:b146b789-811e-4b04-a97f-f3862e0d143f</guid>
      <link>http://www.brainspl.at/articles/2008/03/05/merb-0-9-1-developer-release#comment-4723</link>
    </item>
    <item>
      <title>"Merb-0.9.1 Developer release" by adit</title>
      <description>why we must include source parameter ?

isn't it this version available on rubyforge ?</description>
      <pubDate>Mon, 10 Mar 2008 06:09:43 +0000</pubDate>
      <guid>urn:uuid:ed7943bf-fa95-443f-9a59-4877c6ad2cfc</guid>
      <link>http://www.brainspl.at/articles/2008/03/05/merb-0-9-1-developer-release#comment-4722</link>
    </item>
    <item>
      <title>"Merb-0.9.1 Developer release" by jon</title>
      <description>@JJ - yeah its super complicated 
sudo gem install merb -y --source http://merbivore.com

yikes</description>
      <pubDate>Wed, 05 Mar 2008 19:33:16 +0000</pubDate>
      <guid>urn:uuid:f8cee6ba-40d5-4df4-8c87-f86882407ff6</guid>
      <link>http://www.brainspl.at/articles/2008/03/05/merb-0-9-1-developer-release#comment-4721</link>
    </item>
    <item>
      <title>"Merb-0.9.1 Developer release" by JJ</title>
      <description>I should try this out. I have never installed Merb before. It looks a bit complicated though.</description>
      <pubDate>Wed, 05 Mar 2008 15:34:28 +0000</pubDate>
      <guid>urn:uuid:15c1be01-1469-4e73-a3a6-78a64c123e02</guid>
      <link>http://www.brainspl.at/articles/2008/03/05/merb-0-9-1-developer-release#comment-4720</link>
    </item>
    <item>
      <title>"Merb-0.9.1 Developer release" by Ismael Celis</title>
      <description>Awsome! I was getting quite a few errors in generators and the merb_activerecord. Re-installing now!</description>
      <pubDate>Wed, 05 Mar 2008 10:39:53 +0000</pubDate>
      <guid>urn:uuid:972603e6-43d9-4239-8301-12089a53a89a</guid>
      <link>http://www.brainspl.at/articles/2008/03/05/merb-0-9-1-developer-release#comment-4719</link>
    </item>
    <item>
      <title>Merb-0.9.1 Developer release</title>
      <description>&lt;p&gt;We&amp;#8217;ve released the 0.9.1 version of merb to  the &lt;a href='http://merbivore.com'&gt;merbivore.com&lt;/a&gt; gem server. This release has a lot of polish and is getting very close to being stable api wise after the big 0.5.3 &amp;rarr; 0.9.x refactoring.&lt;/p&gt;


	&lt;p&gt;You can see the big &lt;a href='http://github.com/wycats/merb-core/tree/master/CHANGELOG'&gt;changelog here&lt;/a&gt;.&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;m pretty happy with how the codebase is shaping up, this was a major refactoring of merb and we&amp;#8217;ve come out with a very clean system. Performance is improved quite a bit from older 0.5 versions of merb.&lt;/p&gt;


	&lt;p&gt;We&amp;#8217;ve split the code base into multiple parts, merb-core, merb-more and merb-plugins. merb-core is the heart of the system, it has the rack abstraction along with the dispatcher, router, controller and view layers. You can make very fast, small footprint services and apps with just merb-core.&lt;/p&gt;


merb-more has a bunch of add-ons for core. More consists of:
&lt;pre&gt;
merb-action-args
merb-assets
merb-builder
merb-gen
merb-haml
merb-mailer
merb-parts
merb-test
&lt;/pre&gt;

	&lt;p&gt;And merb-plugins consists of:&lt;/p&gt;


&lt;pre&gt;
merb_activerecord
merb_datamapper
merb_helpers
merb_param_protection
merb_sequel
merb_stories
merb_test_unit
&lt;/pre&gt;

	&lt;p&gt;Wow that&amp;#8217;s a lot of gems! Merb is built in a modular way that allows you to cherry pick features so you never have to load code you aren&amp;#8217;t going to use. This helps keep the memory footprint down when building service style apps. But still allows for all the advanced features you want.&lt;/p&gt;


	&lt;p&gt;You see, Merb is built on rubygems and Merb plugins are just rubygems so plugins have the same standing as built-ins code loading wise. Merb is just begging you to peek under the hood to see how it ticks ;)&lt;/p&gt;


	&lt;p&gt;To make things easier to get started we still have a merb gem that will install all of merb-core and merb-more for you. You should uninstall all of your old merb gems before you install the new version.&lt;/p&gt;


&lt;pre&gt;
$ sudo gem install merb -y --source http://merbivore.com
&lt;/pre&gt;

	&lt;p&gt;Merb development has moved to &lt;a href='http://github.com/wycats/merb-core/tree/master'&gt;GitHub&lt;/a&gt; for source control and &lt;a href='http://merb.lighthouseapp.com/dashboard'&gt;Lighthouse&lt;/a&gt; for ticketing.&lt;/p&gt;


	&lt;p&gt;The best place to get merb questions answered is still #merb on irc.freenode.net. We will have a wiki and a google group up shortly.&lt;/p&gt;


	&lt;p&gt;Let us know what you think, kick the tires and all that. After it settles for a few days we will push it to rubyforge, hopefully by this weekend.&lt;/p&gt;</description>
      <pubDate>Wed, 05 Mar 2008 06:17:00 +0000</pubDate>
      <guid>urn:uuid:108b6328-716b-4e70-b90b-cb0f2ef58c1f</guid>
      <author>ezmobius</author>
      <link>http://www.brainspl.at/articles/2008/03/05/merb-0-9-1-developer-release</link>
      <trackback:ping>http://www.brainspl.at/articles/trackback/4718</trackback:ping>
    </item>
  </channel>
</rss>

