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 lib/prism/relocation.rb, line 191 def initialize(value) @value = value end
Public Instance Methods
fields(_value)
click to toggle source
Fetch the file path.
# File lib/prism/relocation.rb, line 196 def fields(_value) { filepath: value } end