Module ContentUtilities
In: lib/content_utilities.rb

Mixin module: Content helpers and tools.

Note that the web server must be restarted to recognize changes within this file.

Methods

Public Instance methods

Construct a URL content reference.

[Source]

    # File lib/content_utilities.rb, line 8
 8:   def generate_content_url (
 9:     *arguments
10:   )
11:     # Ensure that '/' is prepended to the return value.
12:     [''].concat(arguments).join('/')
13:   end

[Validate]