philippneugebauer/SimpleController

View on GitHub
lib/simple_controller/index_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module SimpleController
  module IndexController
    include SimpleController

    def index
      setup_instance_variable(model_name.all, model_name.to_s.pluralize.underscore)
    end
  end
end