https://github.com/bytedecoder/expense_tracker
My solutions to the Effective Testing with RSpec 3 book (Modular Sinatra example API)
https://github.com/bytedecoder/expense_tracker
ruby sinatra
Last synced: 10 months ago
JSON representation
My solutions to the Effective Testing with RSpec 3 book (Modular Sinatra example API)
- Host: GitHub
- URL: https://github.com/bytedecoder/expense_tracker
- Owner: ByteDecoder
- License: mit
- Created: 2019-04-19T03:24:15.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-01T01:24:43.000Z (about 3 years ago)
- Last Synced: 2025-02-07T06:14:01.662Z (12 months ago)
- Topics: ruby, sinatra
- Language: Ruby
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Running the App
```bash
$ bundle exec rackup
```
# Creating development App database
```bash
$ bundle exec sequel -m ./db/migrations sqlite://db/development.db --echo
```
# Running each rspec test isolated
```bash
$ ./run-isolated-specs
```