I'm new to writing big Ruby projects (only mods and application scripting till now). I've made a project with some files in the project root and others in subfolders, including a "Test" folder.
So far I've tried:
- Adding all folders and subfolders to the load path in RubyMine.
- Declaring all the files to be part of the same module.
I've thought of using require_relative
for loading all files needed but it seems tiresome and very Java-esque... Is there a better way?