Sha256: a28126341066fbd024f0664f5de9024c55fbb06103d741eede2f5e8fac5cd5ea

Contents?: true

Size: 970 Bytes

Versions: 11

Compression:

Stored size: 970 Bytes

Contents

#!/usr/bin/env ruby

require 'logger'
require 'fileutils'

RAILS_ENV = "production"
RAILS_ROOT = FileUtils.pwd
RAILS_DEFAULT_LOGGER = Logger.new(STDOUT)

$: << File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
require 'airbrake'
require 'rails/init'

fail "Please supply an API Key as the first argument" if ARGV.empty?

host = ARGV[1]
host ||= "api.airbrake.io"

secure = (ARGV[2] == "secure")

exception = begin
              raise "Testing airbrake notifier with secure = #{secure}. If you can see this, it works."
            rescue => foo
              foo
            end

Airbrake.configure do |config|
  config.secure  = secure
  config.host    = host
  config.api_key = ARGV.first
end
puts "Configuration:"
Airbrake.configuration.to_hash.each do |key, value|
  puts sprintf("%25s: %s", key.to_s, value.inspect.slice(0, 55))
end
puts "Sending #{secure ? "" : "in"}secure notification to project with key #{ARGV.first}"
Airbrake.notify(exception)

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
airbrake-3.1.10 script/integration_test.rb
airbrake-3.1.9 script/integration_test.rb
airbrake-3.1.8 script/integration_test.rb
airbrake-3.1.7 script/integration_test.rb
airbrake-3.1.6 script/integration_test.rb
airbrake-3.1.5 script/integration_test.rb
airbrake-3.1.4 script/integration_test.rb
airbrake-3.1.3 script/integration_test.rb
airbrake-3.1.2 script/integration_test.rb
airbrake-3.1.1 script/integration_test.rb
airbrake-3.1.0 script/integration_test.rb