일정 자동로드에 LoadError 수 없습니다 그것은 그 오토로더는
주소는 다음과 같은 오류
를 던졌습니다 lib 디렉토리/도구/주소와 나의 모델을로드하는 것LoadError: Unable to autoload constant Address, expected /lib/tools/address.rb to define it
누군가가 내가 잘못 뭘하는지 말해 줄 수 . 나는
주소/상수 모델에 lib 디렉토리/도구/address.rb
응용 프로그램/모델/address.rb
class Address
blah
end
에 address.rb
및
도구 : 주소를 가리키는 것이라고 생각 LIB는 같은 이름을 가진하지만 서로 다른 네임 스페이스 여러 상수를 사용하는 것이 까다로울 수 있습니다 내 경험/도구/address.rb
module Tools
class Address
blah blah
end
end
lib 디렉토리/도구/address.rb에서 누락 된 끝에 거기에 당신에게 LoadError을주고있다 파일의 상단에이 줄을 넣어. 그건 그냥 오타예요? – jaydel
@jaydel yea, 그냥 오타입니다. – bopritchard