I have a directory tree.
- app.rb
- folder/
  -one.rb
app.rb
 $:.unshift File.dirname(__FILE__)
 require 'folder/one'
When I ran ruby app.rb, I got this error:
`require': cannot load such file -- ./radius/dictionary (LoadError).
I don't know why. Please help.
 
     
     
    