Hi everyone, I need help with a special request. I have a boot file that
require all the files and also have a begin function that is executed
before running all my other files. This function can now be called at
any time in my code. But it is dynamically referencing other libraries I
have and mixins and modules in that library. So at the moment I am
trying to include nested modules like this:
require_files ‘whitelabel’
include Pages::WhiteLabel::Community
include Pages::WhiteLabel::Games
include Pages::WhiteLabel::GettingStarted
include Pages::WhiteLabel::HelpFaq
include Pages::WhiteLabel::Home
include Pages::WhiteLabel::MyAccount
include Pages::WhiteLabel::Promotions
include Pages::WhiteLabel::Registration
include Pages::WhiteLabel::ShopOfJoy
include Pages::WhiteLabel::Vip
include Pages::WhiteLabel::Winners
include Pages::WhiteLabel::Magnolia
include Pages::WhiteLabel::Mixins
Now, my question is, without creating a separate file that reference
these modules, is it possible to do an “include” by doing a loop or
calling the Pages::Whitelabel module to get access to all the submodules
classes and methods?
