class Prism::Relocation::FilepathField
一个表示文件路径的字段。
属性
value[R]
此字段表示的文件路径。
公共类方法
new(value) 点击切换源码
使用给定的文件路径初始化一个新字段。
# File prism/relocation.rb, line 190 def initialize(value) @value = value end
公共实例方法
fields(_value) 点击切换源码
获取文件路径。
# File prism/relocation.rb, line 195 def fields(_value) { filepath: value } end