Sha256: 74353d851de9608af9610775fb21beeec7dce0c923ad657405c28c632a8dacc1
Contents?: true
Size: 581 Bytes
Versions: 23
Compression:
Stored size: 581 Bytes
Contents
module Extface class ApplicationController < ActionController::Base prepend_before_filter :include_extra_module def index end def extfaceable @extfaceable ||= extface_mapping.i_klass.find_by(extface_mapping.i_find_key => params[extface_mapping.i_param]) end private def extface_mapping @extface_mapping ||= Extface::Mapping.find(request.fullpath) end def include_extra_module self.class.send(:include, extface_mapping.i_extra_module) if extface_mapping.i_extra_module.present? end end end
Version data entries
23 entries across 23 versions & 1 rubygems