So i have one ruby file that is reside inside model > service
module Services module SomeJobs def mainJob ... end end end and how do i call that method from ruby class that sit inside lib/testfunction.rb
I tried the following and it did not work. any help is appreciate. I am trying to debug the code.
class TestFunction include SomeJobs TestFunction::mainJob end