# Simple mixin module Loggable def log(message) puts "[#{Time.now}] #{self.class.name}: #{message}" end end
module Paginatable extend ActiveSupport::Concern included do before_action :set_pagination_params, only: [:index] end