metrics-jruby 3.0.2.2-jruby → 3.1.0.1-jruby
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 +12 -0
- data/README.md +8 -3
- data/Rakefile +2 -2
- data/lib/java/metrics-core-3.1.0.jar +0 -0
- data/lib/metrics_jruby/version.rb +2 -2
- metadata +4 -3
- data/lib/java/metrics-core-3.0.2.jar +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b969a90f4ebd1c1fda4fe9c552d28357458e4c67
|
4
|
+
data.tar.gz: d1db53b9d3da4d23a60ad55f708d4af18a056643
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d8059bd9f470a81bf354bddca3eeade0b861d536d7041f80c868f69bcf25832855a8c6d99c7de5458bd14242002dcc626538cbc49e494c877583b74e2b11da2
|
7
|
+
data.tar.gz: 68af6fe0fcc357751ce0c26276721c6c4ce77a214095ecfc9db27e4fa468393f9d8e7b2ec0083ad6eb66b669e45995401117a67d2103f2cf5475bb3c367970bf
|
data/CHANGELOG.md
ADDED
data/README.md
CHANGED
@@ -3,9 +3,14 @@ metrics-jruby
|
|
3
3
|
|
4
4
|
This is a wrapper to use the great java-library `metrics` with `jruby`.
|
5
5
|
|
6
|
-
To use, just add `gem metrics-jruby` to your `Gemfile
|
7
|
-
|
6
|
+
To use, just add `gem 'metrics-jruby'` to your `Gemfile` and `require
|
7
|
+
'metrics_jruby'` in your initialization.
|
8
|
+
Now you can access `Java::com.codahale.metrics.MetricRegistry` or
|
9
|
+
`Java::ComCodahaleMetrics::MetricRegistry`.
|
8
10
|
|
9
11
|
More documentation and examples will follow (hopefully).
|
10
12
|
|
11
|
-
|
13
|
+
More information on metrics, see http://metrics.dropwizard.io/.
|
14
|
+
|
15
|
+
[](https://travis-ci.org/rynr/metrics-jruby)
|
16
|
+
[](https://codeclimate.com/github/rynr/metrics-jruby)
|
data/Rakefile
CHANGED
@@ -13,8 +13,8 @@ desc "Run tests"
|
|
13
13
|
task :default => :test
|
14
14
|
|
15
15
|
namespace :metrics do
|
16
|
-
METADATA_URL = 'http://central.maven.org/maven2/
|
17
|
-
JAR_URL = 'http://central.maven.org/maven2/
|
16
|
+
METADATA_URL = 'http://central.maven.org/maven2/io/dropwizard/metrics/metrics-core/maven-metadata.xml'
|
17
|
+
JAR_URL = 'http://central.maven.org/maven2/io/dropwizard/metrics/metrics-core/%{version}/metrics-core-%{version}.jar'
|
18
18
|
VERSION_XPATH = '//metadata/versioning/release'
|
19
19
|
|
20
20
|
desc 'Fetch newest metrics jars'
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metrics-jruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.1.0.1
|
5
5
|
platform: jruby
|
6
6
|
authors:
|
7
7
|
- Rainer Jung
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-09-07 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Don't care about loading the jars, just use this gem.
|
14
14
|
email: rainer.jung@gmail.com
|
@@ -18,10 +18,11 @@ extra_rdoc_files: []
|
|
18
18
|
files:
|
19
19
|
- .gitignore
|
20
20
|
- .travis.yml
|
21
|
+
- CHANGELOG.md
|
21
22
|
- LICENSE
|
22
23
|
- README.md
|
23
24
|
- Rakefile
|
24
|
-
- lib/java/metrics-core-3.0.
|
25
|
+
- lib/java/metrics-core-3.1.0.jar
|
25
26
|
- lib/metrics_jruby.rb
|
26
27
|
- lib/metrics_jruby/version.rb
|
27
28
|
- metrics-jruby.gemspec
|
Binary file
|