module MediaShelfClassLevelInheritableAttributes::MSClassMethods

def ms_inheritable_attributes(*args)

def ms_inheritable_attributes(*args)
  @ms_inheritable_attributes ||=[:ms_inheritable_attributes]
  @ms_inheritable_attributes+=args
  args.each do |arg|
    class_eval %(
      class <<self;attr_accessor :#{arg} end
    )
  end
  @ms_inheritable_attributes
end