Module: RademadeAdmin::Sortable

Defined in:
lib/rademade_admin/sortable.rb

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name, *arguments) ⇒ Object



6
7
8
9
10
11
# File 'lib/rademade_admin/sortable.rb', line 6

def method_missing(name, *arguments)
  if name == 'position'
    raise NotImplementedError.new 'Implement "position" method'
  end
  super
end