ember-cli-scaffold-bootstrap

> Scaffolds models, routes and templates a la rails


Keywords
ember-addon
License
MIT
Install
npm install ember-cli-scaffold-bootstrap@3.0.1

Documentation

Ember-cli-scaffold

Scaffolds models, routes and templates a la rails

Build Status Ember Observer Score

Installation

In your ember-cli app, do ember install ember-cli-scaffold-bootstrap

Usage

ember generate scaffold user first_name:string last_name:string age:number
open http://localhost:4200/users

This command generates the following files:

  • app/mixins/users/save-model-mixin.js
  • app/routes/users/edit.js
  • app/routes/users/index.js
  • app/routes/users/new.js
  • app/templates/users/-form.hbs
  • app/templates/users/edit.hbs
  • app/templates/users/index.hbs
  • app/templates/users/new.hbs
  • app/templates/users/show.hbs
  • app/models/user.js
  • app/mirage/factories/user.js
  • tests/acceptance/users-test.js

These files contain all the CRUD operations and an acceptance test with all tests passing. In order to provide a fake server in both development and tests ember-cli-mirage is used.

It's also possible to generate using the pod structure, just pass the -pod flag to scaffold generator.

Running Tests

npm test

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