class ObjectLoader::PendingObject
Attributes
path[R]
The path being loaded
Public Class Methods
new(path)
click to toggle source
Creates a new {PendingObject} object.
@param [String] path
The path the pending object was loaded from.
Calls superclass method
# File lib/object_loader/pending_object.rb, line 13 def initialize(path) @path = File.expand_path(path) super() end