Module: Rexport::DataFields
- Defined in:
- lib/rexport/data_fields.rb
Defined Under Namespace
Modules: ClassMethods, InstanceMethods
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
20 21 22 23 24 25 26 27 28 |
# File 'lib/rexport/data_fields.rb', line 20 def self.included( base ) base.extend( ClassMethods ) base.class_eval do include InstanceMethods class << self alias_method_chain :reset_column_information, :rexport_reset end end end |