class Ellipses::Server::Meta

Constants

Error
Global
Symbol

Attributes

global[R]
symbols[R]

Public Class Methods

new(hash) click to toggle source
# File lib/ellipses/server/meta.rb, line 60
def initialize(hash)
  symbols_array = hash.delete('symbols') || []
  global_hash   = hash || {}

  @global  = Global.from_hash(global_hash)
  @symbols = Symbols.new(symbols_array, *(@global.depends || []))
end