I have called my function in gems/plugins/account_reports/lib/account_reports/grade_reports.rb file. Now I want to use the same function in lib/reporting/enrollment_details_progress_report.rb file. For that I added require '/gems/plugins/account_reports/lib/account_reports/grade_reports' in lib/reporting/enrollment_details_progress_report.rb file at the top and called that function by using AccountReports::GradeReports.fetch_student_course_completion_date(rec["course_id"], rec["term_id"]) but I am getting the error 'undefined method
fetch_student_course_completion_date'' for AccountReports::GradeReports:Class'`.
Also tried load "gems/plugins/account_reports/lib/account_reports/grade_reports.rb" but still I am getting the error.