Sha256: ef4661e88bb5e10ecfd9b423effc6411a857d27599730cbf6ff0a0bc670242db
Contents?: true
Size: 1.28 KB
Versions: 4
Compression:
Stored size: 1.28 KB
Contents
module Airbrake module Rails module JavascriptNotifier def self.included(base) #:nodoc: base.send :helper_method, :airbrake_javascript_notifier end private def airbrake_javascript_notifier return unless Airbrake.configuration.public? path = File.join File.dirname(__FILE__), '..', '..', 'templates', 'javascript_notifier.erb' host = Airbrake.configuration.host.dup port = Airbrake.configuration.port host << ":#{port}" unless [80, 443].include?(port) options = { :file => path, :layout => false, :use_full_path => false, :locals => { :host => host, :api_key => Airbrake.configuration.js_api_key, :environment => Airbrake.configuration.environment_name, :action_name => action_name, :controller_name => controller_name, :url => request.url } } res = if @template @template.render(options) else render_to_string(options) end if res.respond_to?(:html_safe) res.html_safe else res end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems