To run the server: $ rake server To run tests, use $ rake jasmine Start by adding your application's code in `public/javascripts/application.js` and corresponding Jasmine tests in 'spec/javascripts/application_spec.js' == File listing . ├── Gemfile ├── README ├── Rakefile ├── public │   ├── favicon.ico │   ├── index.html │   └── javascripts │   ├── application.js │   └── vendor │   ├── backbone.js │   ├── jquery.js │   └── underscore.js └── spec └── javascripts ├── application_spec.js ├── helpers │   └── SpecHelper.js └── support ├── jasmine.yml ├── jasmine_config.rb └── jasmine_runner.rb 7 directories, 14 files