class AliveState::Registry

Attributes

application[R]

Public Class Methods

new() click to toggle source
# File lib/alive_state/registry.rb, line 5
def initialize
  @application = []
end

Public Instance Methods

method_missing(name, *args, &block) click to toggle source
# File lib/alive_state/registry.rb, line 9
def method_missing(name, *args, &block)
  @application << AliveState::Application.new(name, &block)
end