class Sprockets::Helpers::ManifestPath

`ManifestPath` uses the digest path and prepends the prefix.

Public Class Methods

new(uri, path, options = {}) click to toggle source
# File lib/sprockets/helpers/manifest_path.rb, line 6
def initialize(uri, path, options = {})
  @uri = uri
  @options = {
    :body => false,
    :prefix => Helpers.prefix
  }.merge options

  @uri.path = path.to_s
end