module RademadeAdmin::Sortable
Public Instance Methods
method_missing(name, *arguments)
click to toggle source
Calls superclass method
# File lib/rademade_admin/sortable.rb, line 5 def method_missing(name, *arguments) if name == 'position' raise NotImplementedError.new 'Implement "position" method' end super end