Sha256: ee892f981a2f5c59a47ec4c58382671fc48bab1afc95b4814a78889676a31a1b
Contents?: true
Size: 1.57 KB
Versions: 3
Compression:
Stored size: 1.57 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_options 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 } } end def airbrake_javascript_notifier return unless Airbrake.configuration.public? options = airbrake_javascript_notifier_options result = airbrake_compile_template if result.respond_to?(:html_safe) result.html_safe else result end end def airbrake_compile_template case @template when ActionView::Template @template.render airbrake_javascript_notifier_options else render_to_string airbrake_javascript_notifier_options end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
airbrake-3.1.11 | lib/airbrake/rails/javascript_notifier.rb |
airbrake-3.1.10 | lib/airbrake/rails/javascript_notifier.rb |
airbrake-3.1.9 | lib/airbrake/rails/javascript_notifier.rb |