Method: DefinedMethods.fqmn

Defined in:
lib/defined_methods.rb

.fqmn(object_name, method, singleton) ⇒ Object



18
19
20
21
# File 'lib/defined_methods.rb', line 18

def fqmn(object_name, method, singleton)
  separator = singleton ? '.' : '#'
  object_name + separator + method.to_s
end