GitXplorerGitXplorer
u

doping-viz

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
172bddeb9c81e4b8fa98a97baeecfa653716cd86

Spelling

uunregistered committed 12 years ago
Unverified
7993cc3b7f8f471cc8e1ed2eab464601a55cbf01

Spelling

uunregistered committed 12 years ago
Unverified
f65df53487a5e83a2b5e0ced1a03897b903df6da

Spelling

uunregistered committed 12 years ago
Unverified
2a876697041dd2ffdd14450c957627a7b58b22fd

Looks

uunregistered committed 12 years ago
Unverified
94848c290ae67882e41268d6f64aa12f42a85e61

Spelling

uunregistered committed 12 years ago
Unverified
423ae92fc99bc7077d019d176ed9d4df4852c730

Interactivity

uunregistered committed 12 years ago

README

The README file for this repository.

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, 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