class Prism::Relocation::FilepathField

A field that represents the file path.

Attributes

value[R]

The file path that this field represents.

Public Class Methods

new(value) click to toggle source

Initialize a new field with the given file path.

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

Public Instance Methods

fields(_value) click to toggle source

Fetch the file path.

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