Foreign language phrasebook for travel or general language study.
Still very much a work in progress. Don't use yet. ☺
- Ruby
- RubyGems
- Ruby DevKit (if you're on Windows)
- SQLite
- Rails:
gem install rails - Bundler:
gem install bundler
git clone https://github.com/ciemarr/phrasebook.gitcd phrasebookbundle installfor x in development test production; do echo "export SECRET_KEY_BASE=$(rails secret)" > .env.$x; done
rails server- localhost:3000
- get any updates:
git pull - make your changes, add tests (TDD!)
- run all the tests:
rake spec - share your changes:
git add,git commit,git push