Sha256: 9c746c4d25a655a9e9370d53d8ca082f168d78f26b76b5ce72237dd90f76c90d
Contents?: true
Size: 1.28 KB
Versions: 5
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.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
5 entries across 5 versions & 1 rubygems