当我在当前笔记本电脑(在任何 rails 项目上)上使用 rails 控制台时,控制台启动时出现以下错误。
Rails console error: Error loading ~/.pryrc: Command: `continue` not found
控制台仍然可以正常加载和运行,但我似乎无法找出错误的原因。
这是.pryrc 的内容。
Pry.config.pager = false
Pry.config.color = true
Pry.commands.alias_command 'c', 'continue'
Pry.commands.alias_command 's', 'step'
Pry.commands.alias_command 'n', 'next'
如果我删除第三行并运行 rails 控制台,我会得到一个类似的错误,它引用了“step”。该错误不会影响我进行故障排除的能力,但我真的很想了解根本问题。