Sha256: 6e9051d5cb6e2c1611db173c7b265848446b257a016d308c310edf1e77863b02
Contents?: true
Size: 439 Bytes
Versions: 24
Compression:
Stored size: 439 Bytes
Contents
class ProjectRootController < ActionController::Base protect_from_forgery def index render json: {} end def default Bugsnag.notify("handled string") render json: {} end def initializer Bugsnag.notify("handled string") render json: {} end def after Bugsnag.configure do |conf| conf.project_root = '/test/root/here' end Bugsnag.notify("handled string") render json: {} end end
Version data entries
24 entries across 12 versions & 1 rubygems