Method: Docks::Process.process

Defined in:
lib/docks/process.rb

.process(item) ⇒ Object



6
7
8
9
10
11
12
13
14
# File 'lib/docks/process.rb', line 6

def self.process(item)
  case item
  when Containers::Symbol then item = process_symbol(item)
  when Containers::Pattern then process_pattern(item)
  when Containers::PatternLibrary then process_pattern_library(item)
  end

  item
end