prefix=(value = '/')
public
Sets the \prefix for
a resource’s nested URL (e.g., prefix/collectionname/1.xml).
Default value is site.path.
Show source
def prefix=(value = '/')
prefix_call = value.gsub(/:\w+/) { |key| "\#{URI.escape options[#{key}].to_s}" }
@prefix_parameters = nil
silence_warnings do
instance_eval "def prefix_source() \"\#{value}\" end\ndef prefix(options={}) \"\#{prefix_call}\" end\n", __FILE__, __LINE__ + 1
end
rescue Exception => e
logger.error "Couldn't set prefix: #{e}\n #{code}" if logger
raise
end