attribute_accessors.rb

Path: vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb
Last Update: Wed Mar 27 17:41:12 +0000 2013

Extends the class object with class and instance accessors for class attributes, just like the native attr* accessors for instance attributes.

 class Person
   cattr_accessor :hair_colors
 end

 Person.hair_colors = [:brown, :black, :blonde, :red]

[Validate]