Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rubysolo/warmup-exercises
Short assignments to start the day off right.
https://github.com/rubysolo/warmup-exercises
Last synced: 3 months ago
JSON representation
Short assignments to start the day off right.
- Host: GitHub
- URL: https://github.com/rubysolo/warmup-exercises
- Owner: rubysolo
- Fork: true (danmee10/warmup-exercises)
- Created: 2013-05-29T15:29:14.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-06-17T20:44:32.000Z (over 11 years ago)
- Last Synced: 2024-04-05T11:34:10.036Z (7 months ago)
- Language: Ruby
- Homepage:
- Size: 421 KB
- Stars: 2
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Warm-Up Exercises
## Setup
Clone this repository.
```sh
git clone [email protected]:JumpstartLab/warmup-exercises.git
```### Ruby
* Install [RVM](https://rvm.io/)
* Install [Ruby 2.0.0](http://www.ruby-lang.org/en/)```bash
$ \curl -L https://get.rvm.io | bash -s stable --rails --autolibs=enabled
```### JavaScript & CoffeeScript
* Install [Node.js](http://nodejs.org/)
* Install [jasmine-node](https://github.com/mhevery/jasmine-node)```bash
$ brew install node
$ npm install jasmine-node -g
```Update the `~/.bash_profile` to include NPM binary files on the PATH:
```
export PATH=/usr/local/share/npm/bin:$PATH
```## Execution
### Ruby
```bash
$ cd WARMUP
$ ruby test.rb
```### JavaScript
```bash
$ cd WARMUP
$ jasmine-node test.spec.js
```### CoffeeScript
Jasmine-Node favors JavaScript files over CoffeeScript (even with the differing
file endings) so the test file named is named differently.```bash
$ cd WARMUP
$ jasmine-node --coffee coffee.spec.coffee
```