Sha256: 4b4fd95ad0b16155df681c753bb78c4eab4d74bcf182a0220b9ea4b0d44fdee1

Contents?: true

Size: 1.19 KB

Versions: 1

Compression:

Stored size: 1.19 KB

Contents

# 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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rails-cancan-bootstrap-scaffold-0.0.1 README.md