GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: A simple application written in merb to help you manage ad serving across multiple sites
Clone URL: git://github.com/kneath/greed.git
greed / framework / merb-core
name age message
..
file LICENSE Tue Apr 22 17:00:11 -0700 2008 Freeze merb [kneath]
file README Tue Apr 22 17:00:11 -0700 2008 Freeze merb [kneath]
file Rakefile Tue Apr 22 17:00:11 -0700 2008 Freeze merb [kneath]
file TODO Tue Apr 22 17:00:11 -0700 2008 Freeze merb [kneath]
directory bin/ Tue Apr 22 17:00:11 -0700 2008 Freeze merb [kneath]
directory docs/ Tue Apr 22 17:00:11 -0700 2008 Freeze merb [kneath]
directory lib/ Tue Apr 22 17:00:11 -0700 2008 Freeze merb [kneath]
directory spec/ Tue Apr 22 17:00:11 -0700 2008 Freeze merb [kneath]
README
merb-core is a new branch of Merb (also referred to as merb-next or the 0.9 series) which aims to provide a stable, 
stripped down API for a future Merb 1.0 release.

This branch is based off the 0.5 release series but with significant rewrites.

Goals of this release:

  * Stabilize the @public interface methods to provide for a more consistent application development experience.
  * Remove features until nothing except a central application API is left
  * Improve comments on methods using a standard documentation methodology as described in DOCUMENTATION_STANDARDS
  * Separate the tests into two sections... "private" and "public"
    * Public methods are methods tagged with @public that will be part of the standard, stable Merb API
    * Private methods are implementation methods that might 
  * Implement a new render API
  * Build more extensions to regain selected features when needed
  
To familiarize yourself with how a merb-core application might look,
use merb-gen (from merb-more) to generate a few apps:
$ merb-gen myapp                   # a "normal" merb app
$ merb-gen myapp --flat            # a flattened app
$ merb-gen myapp --very-flat       # a single-file app