metrician 0.0.1 → 0.0.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/.gitignore +1 -0
- data/lib/metrician/version.rb +1 -1
- data/metrician.gemspec +3 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 62242e84dbe7e955cf9a37649cb6a66f03ad0183
|
|
4
|
+
data.tar.gz: 0c4fbed4b4251dc0010639964d711d338e5d4e4c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d367bd9a338b92937d2580023580542906bac3f463179dd778956b2b610d224f35bdc8ca766cbcc3195678db20841f37721390451c4681edbc4bf77920586eac
|
|
7
|
+
data.tar.gz: 29fd3caf4de721a27a981e59a0ebb0b60fe43bd320d182e939e26cf5cbb4430c8880869853a5b127469a64317a8099cbcdf10867eb88539836a21c6499a5e551
|
data/.gitignore
CHANGED
data/lib/metrician/version.rb
CHANGED
data/metrician.gemspec
CHANGED
|
@@ -10,6 +10,9 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.summary = "Automatic Application Metric Collection for Ruby Applications"
|
|
11
11
|
s.description = "Automatically report the most important metrics about your ruby application, from request timing to job execution."
|
|
12
12
|
s.license = "MIT"
|
|
13
|
+
s.metadata = {
|
|
14
|
+
"source_code" => "https://github.com/Instrumental/metrician-ruby"
|
|
15
|
+
}
|
|
13
16
|
|
|
14
17
|
s.files = `git ls-files`.split("\n")
|
|
15
18
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: metrician
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Expected Behavior
|
|
@@ -154,7 +154,8 @@ files:
|
|
|
154
154
|
homepage: http://instrumentalapp.com/
|
|
155
155
|
licenses:
|
|
156
156
|
- MIT
|
|
157
|
-
metadata:
|
|
157
|
+
metadata:
|
|
158
|
+
source_code: https://github.com/Instrumental/metrician-ruby
|
|
158
159
|
post_install_message:
|
|
159
160
|
rdoc_options: []
|
|
160
161
|
require_paths:
|