class BasicObject

Public Instance Methods

wrapped() click to toggle source

Wrap the object, forcing the user to be aware of the potential for a nil value by unwrapping it.

See the Present class for details on how to unwrap it.

# File lib/wrapped/injection.rb, line 9
def wrapped
  ::Present.new(self)
end