class Prism::Relocation::FilepathField

A field that represents the file path.

Attributes

The file path that this field represents.

Public Class Methods

Initialize a new field with the given file path.

# File lib/prism/relocation.rb, line 190
def initialize(value)
  @value = value
end

Public Instance Methods

Fetch the file path.

# File lib/prism/relocation.rb, line 195
def fields(_value)
  { filepath: value }
end