module ZeroDowntime::Deprecatable::AttributesWithDeprecations

Public Instance Methods

attribute_names() click to toggle source
Calls superclass method
# File lib/zero_downtime/deprecatable.rb, line 39
def attribute_names
  super - self.class.deprecated_columns
end
attributes() click to toggle source
Calls superclass method
# File lib/zero_downtime/deprecatable.rb, line 35
def attributes
  super.except(*self.class.deprecated_columns)
end