Always ignore .DS_Store and vim swap files
.DS\_Store
function assert(condition, message) { | |
if (!condition) { | |
throw message || "Assertion failed"; | |
} | |
} |
// returns a single element of an array based upon it's offset from the end | |
if (!Array.prototype.last){ | |
Array.prototype.last = function(offset){ | |
return this[this.length - offset]; | |
}; | |
}; |
language: ruby | |
rvm: | |
- 1.9.3 | |
env: | |
- DB=postgresql | |
script: | |
- bundle exec rake db:migrate | |
- bundle exec rake db:test:prepare | |
- bundle exec rake spec | |
before_script: |
see my Goodreads page
TITLE | AUTHOR(S) | LENGTH | COMPLETED? |
---|---|---|---|
Eloquent Ruby | 448 | TRUE | |
Well-Grounded Rubyist | 470 | TRUE |
|