yabeda 0.6.1 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/yabeda/dsl/class_methods.rb +1 -0
- data/lib/yabeda/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fbc7c44d3d257c23cdbce5b423db52c4f2591c21737d939d9dce8df53c557f04
|
|
4
|
+
data.tar.gz: 9c68a889b0f978a4471b0458e4d48903ab019ae7dfc6948b55cb5a5147060127
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2cd9007fda7bd41d90a20238ac81dd4d2efe46e39f5473e7e0c318f5efb984f6b3e0843a06fb5c325514f0e4282fae98b2fcfc9f9920bdfbccfca946de32b910
|
|
7
|
+
data.tar.gz: 0d429f2971ff62ec68d36bedf089ef5f203a8c63cabaddd917704529d6aaf307999ac3d2716207abb9c37be23e42d5dcdc3115d5a6eb8551eb23ef940aefb80d
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## 0.6.2 - 2020-08-04
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Compatibility with plugins (like [yabeda-puma-plugin](https://github.com/yabeda-rb/yabeda-puma-plugin)) that for some reason configures itself after Yabeda configuration was already applied by `Yabeda.configure!` (was broken in 0.6.0). [@Envek]
|
|
13
|
+
|
|
8
14
|
## 0.6.1 - 2020-07-16
|
|
9
15
|
|
|
10
16
|
### Fixed
|
|
@@ -85,6 +85,7 @@ module Yabeda
|
|
|
85
85
|
::Yabeda.define_singleton_method(name) { metric }
|
|
86
86
|
::Yabeda.metrics[name] = metric
|
|
87
87
|
register_group_for(metric) if metric.group
|
|
88
|
+
::Yabeda.adapters.each_value { |adapter| adapter.register!(metric) } if ::Yabeda.configured?
|
|
88
89
|
metric
|
|
89
90
|
end
|
|
90
91
|
|
data/lib/yabeda/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yabeda
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrey Novikov
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-08-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: concurrent-ruby
|
|
@@ -111,7 +111,7 @@ dependencies:
|
|
|
111
111
|
description: 'Collect statistics about how your application is performing with ease.
|
|
112
112
|
Export metrics to various monitoring systems.
|
|
113
113
|
|
|
114
|
-
|
|
114
|
+
'
|
|
115
115
|
email:
|
|
116
116
|
- envek@envek.name
|
|
117
117
|
executables: []
|
|
@@ -149,7 +149,7 @@ homepage: https://github.com/yabeda-rb/yabeda
|
|
|
149
149
|
licenses:
|
|
150
150
|
- MIT
|
|
151
151
|
metadata: {}
|
|
152
|
-
post_install_message:
|
|
152
|
+
post_install_message:
|
|
153
153
|
rdoc_options: []
|
|
154
154
|
require_paths:
|
|
155
155
|
- lib
|
|
@@ -165,7 +165,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
165
165
|
version: '0'
|
|
166
166
|
requirements: []
|
|
167
167
|
rubygems_version: 3.1.2
|
|
168
|
-
signing_key:
|
|
168
|
+
signing_key:
|
|
169
169
|
specification_version: 4
|
|
170
170
|
summary: Extensible framework for collecting metric for your Ruby application
|
|
171
171
|
test_files: []
|