You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove reload! command due to conflict with helper
The helper enables both of the following:
```
$ rails c
Loading development environment (Rails 8.1.0.alpha)
min(dev)> reload!; puts "test"
Reloading...
test
=> nil
min(dev)> reload! ; puts "test"
Reloading...
test
min(dev)>
```
whereas the command prevents the second case from working (the first is
interpreted as the helper):
```
$ rails c
Loading development environment (Rails 8.1.0.alpha)
min(dev)> reload!; puts "test"
Reloading...
test
=> nil
min(dev)> reload! ; puts "test"
Reloading...
min(dev)>
```
0 commit comments