No commit activity in last 3 years
No release in over 3 years
Automatically create, open and updates Gitlab issues on rails exceptions.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 4.0, >= 4.0.1
>= 3.7, >= 3.7.0
>= 4.2, >= 4.2.0
 Project Readme

Gitlab Exception Notification

Gem Version


Automatically create, open and updates Gitlab issues on rails exceptions.

Works with the ExceptionNotification gem.

Setup

Require the gem in your rails project's Gemfile:

gem "gitlab_exception_notification"

Add the gitlab notifier in the ExceptionNotification configuration, usually in the production.rb file.

config.middleware.use ExceptionNotification::Rack,
  :gitlab => {
    private_token: "YOUR_PRIVATE_GITLAB_TOKEN",
    gitlab_url: "YOUR_PRIVATE_GITLAB_ENDPOINT",
    project_name: "YOUR_GITLAB_PROJECT_NAME"
  }