class Prism::Relocation::Repository
def field(name, value)
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