class Multiwoven::Integrations::Core::BaseConnector

def relative_path

def relative_path
  path = Object.const_source_location(self.class.to_s)[0]
  connector_folder = File.dirname(path)
  marker = "/lib/multiwoven/integrations/"
  parts = connector_folder.split(marker)
  marker + parts.last if parts.length > 1
end