module Bytemapper::Nameable

Attributes

name[R]
names[RW]

Public Instance Methods

name=(v) click to toggle source
# File lib/bytemapper/nameable.rb, line 22
def name=(v)
  @name ||= v.respond_to?(:to_sym) ? v.to_sym : v
end