module MagicPath
Root namespace for our gem
Constants
- VERSION
Public Class Methods
instance()
click to toggle source
# File lib/magic_path.rb, line 19 def instance @instance ||= MagicPath::PathManager.new end
method_missing(meth, *args)
click to toggle source
# File lib/magic_path.rb, line 11 def method_missing(meth, *args) instance.send(meth, *args) end
reset()
click to toggle source
# File lib/magic_path.rb, line 15 def reset @instance = nil end
respond_to?(meth)
click to toggle source
# File lib/magic_path.rb, line 7 def respond_to?(meth) instance.respond_to?(meth) end