class Prism::Relocation::Repository

def filepath

Configure the filepath field for this repository and return self.
def filepath
  raise ConfigurationError, "Can only specify filepath for a filepath source" unless source.is_a?(SourceFilepath)
  field(:filepath, FilepathField.new(source.value))
end