class Opal::Hike::Trail

def initialize(root = '.')

`Trail#paths` will expanded relative to the root.
current working directory. Any relative paths added to
A Trail accepts an optional root path that defaults to your
def initialize(root = '.')
  @root       = Pathname.new(root).expand_path
  @paths      = []
  @extensions = []
end