Sha256: 78322da33cf65a89375fca2b050ccde04b763d6eefc17e3388521c4b0f5678e8
Contents?: true
Size: 396 Bytes
Versions: 14
Compression:
Stored size: 396 Bytes
Contents
module Ishapi class ApplicationController < ActionController::Base protect_from_forgery with: :exception layout :false before_action :set_current_ability check_authorization private def set_current_ability @current_ability ||= ::Ishapi::Ability.new( current_user ) end def puts! a, b='' puts "+++ +++ #{b}" puts a.inspect end end end
Version data entries
14 entries across 14 versions & 1 rubygems