Neither ruby and nor irb can load .rb file in current directory

前端 未结 7 1137
慢半拍i
慢半拍i 2021-01-31 17:30

I\'m having a really noob problem with importing files in Ruby. I\'m making a Ruby app in Windows XP. All the class files for the app are in \"C:/Documents/Prgm/Surveyor_R

7条回答
  •  北恋
    北恋 (楼主)
    2021-01-31 17:55

    None of these worked for me, but this did:

    irb -I .
    >require 'file'
     => true
    

提交回复
热议问题