Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望能够测试我在古巴需要的课程,而不必使用 irb 单独要求它们。我一直在使用的是一个运行的端点binding.pry,但我更愿意使用 Rails 控制台之类的东西。
binding.pry
您可以$ pry -r ./app在app.rb需要所有项目文件的地方。
$ pry -r ./app
app.rb
要要求所有文件,您可以查看类似
Dir["./models/**/*.rb"].each { |rb| require rb }