https://github.com/devinus/ember-skeleton
A skeleton application framework using Ember.js and Rake Pipeline
https://github.com/devinus/ember-skeleton
Last synced: 7 months ago
JSON representation
A skeleton application framework using Ember.js and Rake Pipeline
- Host: GitHub
- URL: https://github.com/devinus/ember-skeleton
- Owner: devinus
- License: isc
- Created: 2012-04-11T17:25:15.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2012-08-23T20:10:29.000Z (almost 14 years ago)
- Last Synced: 2025-02-12T03:48:08.216Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://github.com/devinus/ember-skeleton
- Size: 610 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Ember Skeleton
==============
A skeleton application framework using Ember.js and Rake Pipeline.
Running
-------
$ bundle install
$ bundle exec rackup
App Structure
-------------
ember-skeleton
├── Assetfile - App build file
├── Gemfile - Package dependencies for rakep/rack
├── Gemfile.lock - Here be dragons: don't touch, always include
├── app - App specific code
│ ├── css - App CSS or SCSS (.scss)
│ ├── lib - App code, *modularized during build*
│ ├── modules - Module code, *already modularized*
│ ├── plugins - Plugins (e.g. jquery.jsonrpc.js)
│ │ └── loader.js - JS module loader
│ ├── static - Static files, never touched, copied over during build
│ ├── templates - Handlebars templates, *modularized during build*
│ ├── tests - QUnit application tests
│ └── vendor - Vendor code, *modularized during build*
├── assets - Built out asset files, minified in production
│ ├── app.css - Built out app CSS/SCSS
│ ├── app.js - Built out app JS
│ └── loader.js - Built out JS module loader
├── config.ru - Rack development web server configuration
├── index.html - The app entry point
├── tests - QUnit testing files
│ ├── index.html - The testing entry point
│ ├── qunit - Testing support files
│ └── run-tests.js - The PhantomJS QUnit test runner
└── tmp - Temporary build files used by rakep
Testing
-------
You can test the app by invoking:
$ bundle exec rake test
This executes the tests by using [PhantomJS](http://www.phantomjs.org/),
which you need to have installed.
Or you can run the tests via:
$ bundle exec rackup
$ open http://localhost:9292/tests/index.html
If you want to continuously run the tests every time a file changes, invoke:
$ bundle exec guard