method

method_missing

method_missing(name, *args, &blk)
public

No documentation available.

# File lib/bundler/plugin/api.rb, line 67
      def method_missing(name, *args, &blk)
        return Bundler.send(name, *args, &blk) if Bundler.respond_to?(name)

        return SharedHelpers.send(name, *args, &blk) if SharedHelpers.respond_to?(name)

        super
      end