class Prism::Relocation::Repository

def field(name, value)

that these calls can be chained.
Append the given field to the repository and return the repository so
def field(name, value)
  raise ConfigurationError, "Cannot specify multiple #{name} fields" if @fields.key?(name)
  @fields[name] = value
  self
end