module Nenv

Constants

VERSION

Public Class Methods

instance() click to toggle source
# File lib/nenv.rb, line 26
def instance
  @instance ||= Nenv::AutoEnvironment.new
end
method_missing(meth, *args) click to toggle source
# File lib/nenv.rb, line 18
def method_missing(meth, *args)
  instance.send(meth, *args)
end
reset() click to toggle source
# File lib/nenv.rb, line 22
def reset
  @instance = nil
end
respond_to?(meth) click to toggle source
# File lib/nenv.rb, line 14
def respond_to?(meth)
  instance.respond_to?(meth)
end