Sha256: 62f1889cf6db522adefbcf073f0c28b9f749cb59f29f28b369a996323ed0c84c
Contents?: true
Size: 397 Bytes
Versions: 19
Compression:
Stored size: 397 Bytes
Contents
class AppVersionController < ActionController::Base protect_from_forgery 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.app_version = params[:version] end Bugsnag.notify("handled string") render json: {} end end
Version data entries
19 entries across 12 versions & 1 rubygems