Method: FFI::LibraryPath#to_s

Defined in:
lib/ffi/library_path.rb

#to_sObject



100
101
102
103
104
105
106
107
# File 'lib/ffi/library_path.rb', line 100

def to_s
  if root
    # If the root path is given, we generate the full path:
    File.join(root, full_name)
  else
    full_name
  end
end