Sha256: 3583e7790fec08843fbde1317052ab5ca2b4b4acc42d6ed0fb1740f77324509d

Contents?: true

Size: 1.11 KB

Versions: 5

Compression:

Stored size: 1.11 KB

Contents

# Ouvrages Scaffold

Rails generators that produce HAML views to be used with Bootstrap and Cancan.

## Installation

Add this line to your application's Gemfile:

    gem 'ouvrages_scaffold'

And then execute:

    bundle

Or install it yourself as:

    gem install ouvrages_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 ouvrages:scaffold Post

You can also run the generators individually:

    rails g ouvrages:controller Post
    rails g ouvrages:routes Post
    rails g ouvrages: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 ouvrages: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

5 entries across 5 versions & 1 rubygems

Version Path
ouvrages_scaffold-0.2.0 README.md
ouvrages_scaffold-0.1.3 README.md
ouvrages_scaffold-0.1.2 README.md
ouvrages_scaffold-0.1.1 README.md
ouvrages_scaffold-0.1.0 README.md