Method: HaveAPI::Fs::Component#abspath

Defined in:
lib/haveapi/fs/component.rb

#abspathString

Returns absolute path of this component from the system root.

Returns:

  • (String)

    absolute path of this component from the system root



173
174
175
176
177
178
# File 'lib/haveapi/fs/component.rb', line 173

def abspath
  File.join(
      context.mountpoint,
      path
  )
end