Sha256: bf475b9e81ee73177af27f703e172af29971f1c722aa38831217fa55c71e268d
Contents?: true
Size: 1.33 KB
Versions: 32
Compression:
Stored size: 1.33 KB
Contents
= ActiveList {<img src="https://badge.fury.io/rb/active_list.png" alt="Gem Version" />}[http://badge.fury.io/rb/active_list] {<img src="https://api.travis-ci.org/ekylibre/active_list.png?branch=master"/>}[https://travis-ci.org/ekylibre/active_list] {<img src="https://gemnasium.com/ekylibre/active_list.png"/>}[https://gemnasium.com/ekylibre/active_list] {<img src="https://codeclimate.com/github/ekylibre/active_list.png" />}[https://codeclimate.com/github/ekylibre/active_list] ActiveList is a simple list widget. It permits to create a controller method and view helper to displays lists. The first need was to have a simple component to build easily HTML tables. No scaffolds, only listings. ActiveList works only with Rails ≥ 3.1. ActiveList works only with Ruby ≥ 1.9 since v4.2.0. == Quick start First, the JS code must be added to the pipeline in app/assets/javascripts/application.js: //= require active_list.jquery And for style, you can add in app/assets/stylesheets/application.css: *= require active_list The simple way to use it is to write in our controller: class PeopleController < ApplicationController list def index end end And in the view app/views/people/index.html.erb: <%= list -%> == License ActiveList is released under the MIT license: * http://www.opensource.org/licenses/MIT
Version data entries
32 entries across 32 versions & 1 rubygems