Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fourstepper/rails-testing
https://github.com/fourstepper/rails-testing
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/fourstepper/rails-testing
- Owner: fourstepper
- Created: 2023-12-04T13:27:48.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-06T15:01:08.000Z (about 1 year ago)
- Last Synced: 2023-12-06T16:26:39.789Z (about 1 year ago)
- Language: Ruby
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rails-testing
My testing Rails app to explore Ruby on Rails development workflow.
## Findings:
### Live reload in development
`rails_live_reload` can be used without dependencies to live reload Rails during development
To Install:
```sh
bundle add rails_live_reload --group development
rails generate rails_live_reload:install
```### ./bin/dev not working with auto-installed foreman
`./bin/dev`
```
bundle add foreman --group development
```Into `./bin/dev`:
```sh
#!/usr/bin/env shbundle exec foreman start -f Procfile.dev "$@"
```