# frozen_string_literal: true require "base64" module NeetoCompliance class NeetoCommons def self.path @@_neeto_commons_path ||= get_path end def self.get_path path = `bundle info neeto-commons-backend`.split(" ").last Pathname.new(path).join("lib", "neeto_commons_backend") end end end