Ruby의로드 경로 이해 내 프로젝트가 필요한 파일을로드 할 수없는 이유에 대해 약간 혼란 스럽습니다. 정말 간단한 프로젝트 트리입니다. processor/ bin/ lib/ processor.rb processor/ mapper.rb reducer.rb 내 processor.rb파일은 다음과 같습니다. require 'processor/mapper' require 'processor/reducer' class Processor end 그리고 테스트를 위해 파일 매퍼는 다음과 같습니다. class Mapper def run puts "running map" end end 그러나 실행 ruby lib/processor.rb하면 다음과 같은 결과가 발생합니다. :29:in `require': no such ..