From 87c84c73d21cfadb2d14a892b4ba7cbf97f731c6 Mon Sep 17 00:00:00 2001 From: Otavio Date: Sat, 27 Apr 2019 09:45:38 -0300 Subject: [PATCH] Fix gem name at README (#1) I was trying to use this plugin, but when I was starting my server it was raising error: ``` gems/puma-3.11.4/lib/puma/plugin.rb:48:in `rescue in find': Unable to find plugin: yabeda (Puma::UnknownPlugin) ``` After exploring the [example prometheus project](https://github.com/yabeda-rb/example-prometheus) I found that it was using a different gem https://github.com/yabeda-rb/example-prometheus/blob/64a67c0e000f8b2516aac6bb2f0eb21f634a3ea9/rails_app/Gemfile#L24 ``` gem "yabeda-puma-plugin" ``` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f6a9a6..e7a8247 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Segmented by the worker (index of the worker): Add this line to your application's Gemfile: ```ruby -gem 'yabeda-puma' +gem 'yabeda-puma-plugin' ``` And then execute: