Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryandotsmith/ontheboard
a extensive set of tools for tracking tallys
https://github.com/ryandotsmith/ontheboard
Last synced: 2 months ago
JSON representation
a extensive set of tools for tracking tallys
- Host: GitHub
- URL: https://github.com/ryandotsmith/ontheboard
- Owner: ryandotsmith
- Created: 2008-12-23T05:31:36.000Z (about 16 years ago)
- Default Branch: master
- Last Pushed: 2009-03-30T01:10:19.000Z (almost 16 years ago)
- Last Synced: 2024-10-13T17:47:39.625Z (3 months ago)
- Language: JavaScript
- Homepage: http://thinkfasttank.com
- Size: 499 KB
- Stars: 3
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
**make sure that you have these gems**
rspec, rspec-rails, cucumber, aasm, thoughtbot-factory_girl
you can see all of your gems by running:
gem list**To install factory girl run this**
gem install thoughtbot-factory_girl --source=http://gems.github.com**To install aasm**
gem sources -a http://gems.github.com
gem install rubyist-aasm**To install the rest run this**
gem install rspec rspec-rails cucumber**If you already have an old ontheboard directory .... remove it**
rm -rf ontheboard/**Also, delete the repository from your github account.**
Your github account -> Your Repositories -> ontheboard ->
edit -> delete this repository (located towards bottom of page)**Fork my new repository**
[my repo](http://github.com/ryandotsmith/ontheboard/tree/master)
**Pull up a git bash and cd into a directory where you save your code**
git clone [email protected]:YourAccountName/ontheboard.git
cd ontheboard
cp config/database.example config/database.yml
git submodule init
git submodule update
rake db:drop:all
rake db:create:all
rake db:migrate
rake db:test:prepare
rake spec**you should have seen a bunch (266) of tests pass!**