vinted-resque-metrics 0.0.7 → 0.0.8
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/README.rdoc +8 -0
- data/resque-metrics.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 831cac5b7a1ccf7e90b5e7664b64d59420cb5886
|
|
4
|
+
data.tar.gz: fdda7947e280f0bb69a7caf9a51cc6a3ab754820
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 48fdc505e6696e9e9b4c898cbeca615d6787e147916435c0ca5dbef1252cae6e093ced3814117f1491d47c878327109230c836eccf26fe62a68bd4682212d0de
|
|
7
|
+
data.tar.gz: 47d3babeffb92bad83f078b84e99a2689a3ed73a5d030f67f6d43cc4e833456d53875eafea55b7b21fa45073542ae9df85d96d46029bd47b38a6960e64e1ed42
|
data/README.rdoc
CHANGED
|
@@ -8,6 +8,14 @@ mechanism for recording/sending the metrics to your favorite tool (AKA statsd/gr
|
|
|
8
8
|
|
|
9
9
|
gem install resque-metrics
|
|
10
10
|
|
|
11
|
+
If you are using bundler add this to your Gemfile
|
|
12
|
+
|
|
13
|
+
gem "resque-metrics"
|
|
14
|
+
|
|
15
|
+
And if you want the web-ui extensions
|
|
16
|
+
|
|
17
|
+
gem "resque-metrics", :require => "resque-metrics/server"
|
|
18
|
+
|
|
11
19
|
== Usage
|
|
12
20
|
|
|
13
21
|
Given a job, extend the job class with Resque::Metrics.
|
data/resque-metrics.gemspec
CHANGED