Sha256: 8e0a6949d41d576462bbdff8946fb0c7935eb3eeb4e071378936ff9459b9fa8e
Contents?: true
Size: 691 Bytes
Versions: 1
Compression:
Stored size: 691 Bytes
Contents
module Vedeu # Provides a mechanism to help configure and use Vedeu. # # @api public module DSL private # :nocov: # Attempts to find the missing method on the client object. # # @param method [Symbol] The name of the method sought. # @param args [Array] The arguments which the method was to be invoked with. # @param block [Proc] The optional block provided to the method. # @return [void] def method_missing(method, *args, &block) Vedeu.log(type: :debug, message: "!!!method_missing '#{method}' (#{client.inspect})") client.send(method, *args, &block) if client end # :nocov: end # DSL end # Vedeu
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vedeu-0.4.58 | lib/vedeu/dsl.rb |