Method: PROIEL::Source#method_missing

Defined in:
lib/proiel/source.rb

#method_missing(method_name, *args, &block) ⇒ Object

Accesses metadata fields.



68
69
70
71
72
73
74
# File 'lib/proiel/source.rb', line 68

def method_missing(method_name, *args, &block)
  if .key?(method_name) and args.empty?
    [method_name]
  else
    super
  end
end