24 Jan, 2015
3 commits
-
chmod -x config/initializers/ssl_enforcer.rb
-
This file has no need for executable.
23 Jan, 2015
1 commit
-
Typo s/hoks/hooks
21 Jan, 2015
4 commits
-
Implement JSON Api v3
-
I've added description how to setup airbrake-js to log javascript errors in errbit and how one can test v3 api using airbrake ruby client.
-
I've also did some other minor changes: * Move json payload to fixture file * Add status code to error cases in controller * Move v3 api route outside of api namespace. I've some problems with making this work in tests. * Fix issue with custom exception class
-
Also I've added additional spec for requests with api_key set to nil.
20 Jan, 2015
3 commits
-
fixes #811 ensure friendly error on invalid creds
-
This change allow errbit to accept v3 api calls from airbrake ruby client and propably some other clients that I've no idea of. This is tiny change but it took me some time to investigate this, so I want to explain how to set everything up. It appears that there is a bug in airbrake gem that causes airbrake to not send api key in the request. The only way around this is to set project_id to the value of api key. I've opened an issue for this. https://github.com/airbrake/airbrake/issues/364 To test it you need to add project_id option to airbrake initializer and also monkey patch Aibrake::Sender class. Airbrake uses v3 api only when host is set to collect.airbrake.io and project id is present. Your airbrake initializer should looks like this: Airbrake.configure do |config| config.api_key = ENV['airbrake_api_key'] config.host = ENV['airbrake_host'] config.port = ENV['airbrake_port'].to_i config.project_id = ENV['airbrake_api_key'] config.secure = false end class Airbrake::Sender def json_api_enabled? true end end
19 Jan, 2015
1 commit
-
Adds the rails_12factor gem for Heroku
18 Jan, 2015
2 commits
-
This will allow to capture errors send by airbrake-js.
17 Jan, 2015
1 commit
-
update configs for rails 4.1
16 Jan, 2015
6 commits
-
- use secrets.yml - use Rails.application over Errbit::Application - do not use secret_token.rb - update devise initializer
-
Fix fingerprinting migration as it is refactored
-
#553 document deploy hooks
14 Jan, 2015
1 commit
13 Jan, 2015
1 commit
-
Commit https://github.com/pinglamb/errbit/commit/da3946bef7921e5a6df0d55fc2f556b641884ada refactored fingerprinting into a Fingerprint module, updated the migration for that
12 Jan, 2015
3 commits
-
Update changelog to reflect latest master
11 Jan, 2015
3 commits
-
upgrade to rspec 3
-
Fix GtalkService Keeaplive-Thread leak
08 Jan, 2015
1 commit
-
The GoogleTalk/Jabber Notification Service was leaking keepalive threads, because xmpp4r creates an internal keealive thread on connect that is only cleaned up when closing the client. This lead to workers quickly running out of threads and throwing exceptions like `ThreadError: can't alloc thread`.
07 Jan, 2015
4 commits
-
capistrano 3
-
Remove puma and Procfile.dev
06 Jan, 2015
4 commits
-
Fix double escaping of problem title in list view
-
Also added a spec to test for double escaping which fails without the changes to truncated_problem_message.
-
Fix favicon URL
-
favicon_link_tag defaults to /images/favicon.ico, so the location in public was wrong. To avoid 404 errors for user agents blindly requesting /favicon.ico, we add a symlink in public.
05 Jan, 2015
2 commits