ryandotsmith / ontheboard
- Source
- Commits
- Network (6)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
.gitmodules | ||
| |
Rakefile | ||
| |
app/ | ||
| |
config/ | ||
| |
db/ | ||
| |
doc/ | ||
| |
features/ | ||
| |
lib/ | ||
| |
log/ | ||
| |
public/ | ||
| |
readme.md | ||
| |
script/ | ||
| |
spec/ | ||
| |
stories/ | ||
| |
test/ | ||
| |
tmp/ | ||
| |
vendor/ |
readme.md
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
Pull up a git bash and cd into a directory where you save your code
git clone git@github.com: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!

