Sha256: 89ee5331d6a711334f4428698c4c409cca0f85ea690d89054d79ef31bece6b67

Contents?: true

Size: 924 Bytes

Versions: 1

Compression:

Stored size: 924 Bytes

Contents

# Insightful

<q>DRY, SEO-friendly Rails Views</q>

## Usage

### Install

    sudo gem install represent
    
### Helpers

#### Tooltip Helpers

Ever want to centralize tooltips and helpful hints for form fields in your projects?  Now you can.

#### Metadata Helpers

Adding metadata to your views is easy (`app/views/pages/index.html.erb`):

    <% title       @post.title %>
    <% description @post.description %>
    <% keywords    @post.tag_list %>
    <% body_class  "post post-template" %>
    
    <div id="content">...</div>
    
Default metadata is just as easy (`app/views/layouts/application.html.erb`):

    <%= meta_tags "My Site",
        :keywords => "Rails 3, jQuery",
        :description => "This is what Facebook displays" %>

#### System Helpers

Need to check what browser it is?  No problem.

#### Layout Helpers

Would you like to create a nested menu, or a grid?  No problem.

## Todo

- big_number

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
insightful-0.0.1.6 README.markdown