Sha256: 8f42e04fd2f6e4bda149e0d5db3c65cd0b6cf1a68d6179ecd52434834c40f3f0

Contents?: true

Size: 1.27 KB

Versions: 1

Compression:

Stored size: 1.27 KB

Contents

Brochure
========

A Rack application for serving static sites with ERB templates.

Sample application structure:

    app/
      helpers/
        analytics_helper.rb
        formatting_helper.rb
      templates/
        help/
          index.html.erb
        index.html.erb
        shared/
          _header.html.erb
          _footer.html.erb
        signup.html.erb
    config.ru
    public/
      ...

Sample `config.ru`:

    require "brochure"
    run Brochure::Application.new(File.dirname(__FILE__))

URLs are automatically mapped to template names. So `/` will render
`app/templates/index.html.erb`, `/signup` will render
`app/templates/signup.html.erb`, `/help/` will render
`app/templates/help/index.html.erb`, and so on.

Helpers should define a module that maps to their filename. So
`analytics_helper.rb` defines `AnalyticsHelper`,
`html/forms_helper.rb` defines `Html::FormsHelper`, and so on.

Templates can render partials. Partials are denoted by a leading
underscore in their filename. So `<%= render "shared/header" %>` will
render `app/templates/shared/_header.html.erb` inline.

# Installation

    $ gem install brochure

Requires [Tilt](http://github.com/rtomayko/tilt).

# License

Copyright (c) 2010 Sam Stephenson.

Released under the MIT license. See `LICENSE` for details.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
brochure-0.1.0 README.md