Module: RademadeAdmin::Gallery

Defined in:
lib/rademade_admin/gallery.rb,
app/services/gallery/manager.rb

Defined Under Namespace

Classes: Manager

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name, *arguments) ⇒ Object



5
6
7
8
9
10
# File 'lib/rademade_admin/gallery.rb', line 5

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