ALL HOW TOs




runs as irb with rails environment loaded (loads dev environment by default)

$ rails console               # IRB with dev environment
$ rails console test          # IRB with test environment
$ rails console production    # IRB with production environment  (BE CAREFUL)
$ rails c                     # same as rails console
  • No labels