EmberStrap tries to provide a simple way to use Bootstrap in Ember. It doesn't reinvent the wheel, it just wraps the Bootstrap plugins with an Ember compliant implementation.
You can find complete documentation with examples here: http://pierrickrouxel.github.io/ember-strap/
EmberStrap follows the Ember versioning. (example: EmberStrap 2.0.0 is designed to work with Ember 2.0.x.)
ember install ember-strap
You can disable styles. This is useful to use less or sass.
ENV.emberStrap: {
includeStyles: false
};
...
You can run documentation to help you to test a fix.
ember server
- Visit your app at http://localhost:4200.
All tests run over documentation:
ember test
ember test --server
After commiting changes in the examples or tests to master, you can run ./publish-doc.sh which does several things:
- Checks out gh-pages and pulls changes from master
- Builds ember app with github environment
- Fixes things to make the tests work
- Commits the generated app and pushes it to github pages
- Switches back to original branch