Sha256: 41ea63814536203ed168bfa7e974469f6a5ed603671cf9f9bf5f0241559a9d7d
Contents?: true
Size: 869 Bytes
Versions: 6
Compression:
Stored size: 869 Bytes
Contents
require 'vedeu/dsl/components/all' require 'vedeu/dsl/shared/all' require 'vedeu/dsl/composition' require 'vedeu/dsl/group' require 'vedeu/dsl/interface' require 'vedeu/dsl/line' require 'vedeu/dsl/stream' require 'vedeu/dsl/view' module Vedeu # Provides a mechanism to help configure and use Vedeu. # 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.send(method, *args, &block) if client end # :nocov: end # DSL end # Vedeu
Version data entries
6 entries across 6 versions & 1 rubygems