我正在复习 Rails。一切都按预期运行,直到我使用 rails generate controller Workorders index --skip-routes 制作我的第一个控制器。
现在,rails 无法启动,出现以下错误
puma 5.2.2 symbol lookup error:undefined symbold: pthread_atfor
有其他人遇到过这个问题吗?
我尝试了以下方法:
路线:
Rails.application.routes.draw do
get "/workorders", to: "workorders#index"
end
控制器:
class WorkordersController < ApplicationController
def index
end
end