module Avro::Builder::Namespaceable

This concern is used to generate the full name for objects that may be namespaced.

Public Instance Methods

fullname() click to toggle source
# File lib/avro/builder/namespaceable.rb, line 9
def fullname
  [namespace, name].compact.join('.')
end