Methods

Files

DSLKit::SymbolMaker

This module can be included in another module/class. It generates a symbol for every missing method that was called in the context of this module/class.

Public Instance Methods

method_missing(id, *args) click to toggle source

Returns a symbol (id) for every missing method named id.

# File lib/dslkit/polite.rb, line 352
    def method_missing(id, *args)
      if args.empty?
        id
      else
        super
      end
    end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.