Method: Arca.root_path=

Defined in:
lib/arca.rb

.root_path=(path) ⇒ Object

Public: Writer method for configuring the root path of the project where Arca is being used. Setting Arca.root_path will makes inspecting analyzed callbacks easier by shortening absolute paths to relative paths.

path - Pathname or String representing the root path of the project.



29
30
31
# File 'lib/arca.rb', line 29

def self.root_path=(path)
  @root_path = path.to_s
end