prometheus_parser 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +21 -0
- data/README.md +2 -0
- data/prometheus_parser.gemspec +13 -0
- metadata +5 -2
- /data/lib/{parser.rb → prometheus_parser.rb} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e0b6145adbbe13d187316a71bf2423781ec564123cba468ddbac99f365fe87d5
|
4
|
+
data.tar.gz: 1414a241450009f9d05898d06a30a50fb53a1114256f613fcfd11d6374586ea7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 47689e67c44bca69fa26c8b5373d331e567fed1ad21d2094c80754eba0ef2dbd2febbea024b3edd0fbadf00c353eab0984a94ddeabe1f240ff65a9c1dacbca15
|
7
|
+
data.tar.gz: e43782220d2c0886088e7ed08f4b4574af380529a7f1fbf2e0cee4daca0641010e26a3178d2e1f4e12f860d4ae9ccdc0e1a86e26e6cbd0f2949732c4778da33c
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2023 84codes
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = "prometheus_parser"
|
3
|
+
s.version = "0.2.0"
|
4
|
+
s.summary = "Parse prometheus metrics"
|
5
|
+
s.authors = ["Magnus Landerblom"]
|
6
|
+
s.email = "mange@84codes.com"
|
7
|
+
s.files = Dir.chdir(File.expand_path(__dir__)) do
|
8
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
|
9
|
+
end
|
10
|
+
s.homepage =
|
11
|
+
"https://rubygems.org/gems/prometheus_parser"
|
12
|
+
s.license = "MIT"
|
13
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: prometheus_parser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Magnus Landerblom
|
@@ -16,7 +16,10 @@ executables: []
|
|
16
16
|
extensions: []
|
17
17
|
extra_rdoc_files: []
|
18
18
|
files:
|
19
|
-
-
|
19
|
+
- LICENSE
|
20
|
+
- README.md
|
21
|
+
- lib/prometheus_parser.rb
|
22
|
+
- prometheus_parser.gemspec
|
20
23
|
homepage: https://rubygems.org/gems/prometheus_parser
|
21
24
|
licenses:
|
22
25
|
- MIT
|
File without changes
|