Is there a way how to require
all files in lib
directory at once in irb
console?:
irb ( project root )
require './lib/' # not working
structure
.
|
--lib
|
|-- one.rb
|-- two.rb
|-- tree.rb
EDIT
I prefer a solution where I can require
files only once, not each time when I start irb
session.