module Wireless

The Wireless namespace houses the top-level dependency-provider/service-locator object (Wireless::Registry) and also exposes a static method, Wireless.new, which forwards to and instantiates the registry.

Constants

VERSION

Public Class Methods

new(*args, &block) click to toggle source

a shortcut which allows:

WL = Wireless::Registry.new do
  # ...
end

to be written as:

WL = Wireless.new do
  # ...
end
# File lib/wireless.rb, line 41
def self.new(*args, &block)
  Wireless::Registry.new(*args, &block)
end