module Tins::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
Source
# File lib/tins/dslkit.rb, line 277 def method_missing(id, *args) if args.empty? id else super end end
Returns a symbol (id) for every missing method named id.
Calls superclass method