Sha256: 3b3104a539fab74462b5a23f3fc42f499876387475141dfeec892d39024f3bf6

Contents?: true

Size: 1.15 KB

Versions: 17

Compression:

Stored size: 1.15 KB

Contents

module NotifierHelpers
  def reconfigure_notifier
    Rollbar.reconfigure do |config|
      # special test access token
      config.access_token = test_access_token
      config.logger = ::Rails.logger
      config.root = ::Rails.root
      config.framework = "Rails: #{::Rails::VERSION::STRING}"
      config.request_timeout = 60
    end
  end

  def preconfigure_rails_notifier
    rails_logger = if defined?(::Rails.logger)
                     ::Rails.logger
                   elsif defined?(RAILS_DEFAULT_LOGGER)
                     RAILS_DEFAULT_LOGGER
                   end

    Rollbar.preconfigure do |config|
      config.logger = rails_logger
      config.environment = defined?(::Rails.env) && ::Rails.env || defined?(RAILS_ENV) && RAILS_ENV
      config.root = defined?(::Rails.root) && ::Rails.root || defined?(RAILS_ROOT) && RAILS_ROOT
      config.framework = defined?(::Rails.version) && "Rails: #{::Rails.version}" || defined?(::Rails::VERSION::STRING) && "Rails: #{::Rails::VERSION::STRING}"
    end
  end

  def test_access_token
    'bfec94a1ede64984b862880224edd0ed'
  end

  def reset_configuration
    Rollbar.reconfigure do |config|
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
rollbar-2.10.0 spec/support/notifier_helpers.rb
rollbar-2.9.1 spec/support/notifier_helpers.rb
rollbar-2.9.0 spec/support/notifier_helpers.rb
rollbar-2.8.3 spec/support/notifier_helpers.rb
rollbar-2.8.2 spec/support/notifier_helpers.rb
rollbar-2.8.1 spec/support/notifier_helpers.rb
rollbar-2.8.0 spec/support/notifier_helpers.rb
rollbar-2.7.1 spec/support/notifier_helpers.rb
rollbar-2.7.0 spec/support/notifier_helpers.rb
rollbar-2.6.3 spec/support/notifier_helpers.rb
rollbar-2.6.2 spec/support/notifier_helpers.rb
rollbar-2.6.1 spec/support/notifier_helpers.rb
rollbar-2.6.0 spec/support/notifier_helpers.rb
rollbar-2.5.2 spec/support/notifier_helpers.rb
rollbar-2.5.1 spec/support/notifier_helpers.rb
rollbar-2.5.0 spec/support/notifier_helpers.rb
rollbar-2.4.0 spec/support/notifier_helpers.rb