Class: NeoScout::Main::SimpleConsoleLogger

Inherits:
Object
  • Object
show all
Defined in:
lib/neoscout/main.rb

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(key, *args) ⇒ Object



130
131
132
133
134
# File 'lib/neoscout/main.rb', line 130

def method_missing(key, *args)
  print key
  print ': '
  puts *args
end