Project

blankable

0.0
No commit activity in last 3 years
No release in over 3 years
Adds blank slates to index view
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0
 Project Readme

Blankable

Adds blank slates to index view

Installation

Add this line to your application's Gemfile:

gem 'blankable'

And then execute:

$ bundle

Or install it yourself as:

$ gem install blankable

Usage

# Customers Controller
class CustomersController < ApplicationController
  def index
    @customers = Customer.all
    respond_with(@customers)
  end
end
# views/customers/_list.html.haml
%table
  %tr
    %th Name
    %th Business Phone
    %th Mobile Phone
    %th Address


  - @customers.each do |customer|
    %tr
      %td= customer.name
      %td= customer.business_phone
      %td= customer.mobile_phone
      %td= customer.address
# views/customers/_blank.html.haml
 = link_to 'Add your first customer', new_customer_path
# views/customers/index.html.haml
= blankable @customers

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Credits

lab2023

License

Copyright 2014 lab2023 – information technologies