No commit activity in last 3 years
No release in over 3 years
Rails scaffold in HAML, using cancan and bootstrap
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Project Readme

Rails::Cancan::Bootstrap::Scaffold

Rails generators that produce standard code for Bootstrap and Cancan.

Installation

Add this line to your application's Gemfile:

gem 'rails-cancan-bootstrap-scaffold'

And then execute:

bundle

Or install it yourself as:

gem install rails-cancan-bootstrap-scaffold

Usage

First generate your model with Rails and migrate:

rails g model Post title:string body:text
rake db:migrate

Then generate the scaffold with:

rails g cancan_bootstrap:scaffold Post

You can also run the generators individually:

rails g cancan_bootstrap:controller Post
rails g cancan_bootstrap:routes Post
rails g cancan_bootstrap:views Post

If you want to change the model and regenerate the scaffold, you must update the database and call the generator again (you only need to update the views):

rails g migration AddActiveToPost active:boolean
rake db:migrate
rails g cancan_bootstrap:views Post

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