#Programming #WebDevelopment #Ruby
### Open IRB in Rails app, included gems available
```
bundle exec rails c
```
### Open IRB in Rails app in the `test` environment with sandboxing
(all DB transactions during the session are rolled back upon closing)
```
bundle exec rails c -e test --sandbox
```