module AliveState

Constants

VERSION

Public Class Methods

application(&block) click to toggle source
# File lib/alive_state.rb, line 19
def application(&block)
  registry = AliveState::Registry.new
  registry.instance_eval(&block)
  @applications ||= []
  @applications += registry.application
end
applications() click to toggle source
# File lib/alive_state.rb, line 26
def applications
  @applications
end
config() click to toggle source
# File lib/alive_state.rb, line 15
def config
  AliveState::Configure
end
configure() { |Configure| ... } click to toggle source
# File lib/alive_state.rb, line 11
def configure
  yield AliveState::Configure
end