module TLAW::DSL::NamespaceWrapper::GlobalAwareEndpoint

Public Instance Methods

endpoint(*args, &block) click to toggle source
Calls superclass method
# File lib/libraries_io/ext/tlaw.rb, line 12
def endpoint(*args, &block)
  super(*args) do
    instance_eval(&block)
    DSL::NamespaceWrapper.globals.each do |name, type, opts|
      param(name, type, **opts)
    end
  end
end