Sha256: c5280db68ba4baebd28a1543afe8280957c60a32d0aed13121c335f769441b78
Contents?: true
Size: 1.49 KB
Versions: 5
Compression:
Stored size: 1.49 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] {<img src="https://coveralls.io/repos/ekylibre/active_list/badge.png?branch=master" alt="Coverage Status" />}[https://coveralls.io/r/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
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
active_list-6.3.0 | README.rdoc |
active_list-6.2.4 | README.rdoc |
active_list-6.2.3 | README.rdoc |
active_list-6.2.1 | README.rdoc |
active_list-6.2.0 | README.rdoc |