Rails 中模型的命名约定是什么?如果我的模型是关于飞行汽车的,以下哪个类名最合适?
class FlyingCar < ActiveRecord::Base
attr_accessible :model, :max_speed
end
class Flying_Car < ActiveRecord::Base
attr_accessible :model, :max_speed
end
class Flying_car < ActiveRecord::Base
attr_accessible :model, :max_speed
end