ruby.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
If you are interested in the Ruby programming language, come join us! Tell us about yourself when signing up. If you just want to join Mastodon, another server will be a better place for you.

Administered by:

Server stats:

1.1K
active users

Peter Solnica

Here's an example of a Hanami provider in my app that configures an exception notifier.

Notice that:

1) It only starts in production env
2) Configuration is separated via `prepare` step
3) We set Rollbar as a regular error logger. This means that in other envs no special code is needed. You just do `logger.error(e)`
4) It's 🆒

I *could* even add `stop` step that disables Rollbar but it's not needed in my app.