jrmonitor 0.4.1 → 0.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8a65837362b154244853b7a9bc93d47aa82532bb
4
- data.tar.gz: 0dfaa4c267fc28bdc0374368d9f5d77bb0d51cc5
3
+ metadata.gz: b05d33f27d28b919d651afd340ba336527984fcf
4
+ data.tar.gz: a1e651797b7f73948017a81ab879eb217eb57b64
5
5
  SHA512:
6
- metadata.gz: 154cce4899bd45a301cac1234f8f9a74141bd19d431bd36e5663861c5b7bb3625c222e1d28c5c1239b324824f53209068d534283a1136ad3270b458882478481
7
- data.tar.gz: a9f50535c8399f1267f65debd7bca63c2fbd1d4beeee577888e40dc26163328edb4975126fa6a7b787af45c8ebd3c157780161ab9cfbf8b43403aa330801bd5f
6
+ metadata.gz: 5d8be14875f1bb4e1462fd3b0ce8fbb8f11df3069bbbb37aa6837967216151f5da773e81d6ac1a406263b6ea986a80a4859dc44107d07c48d4da8f81ee7fa2cd
7
+ data.tar.gz: a1228eaf2a166c1bd3f64f749f47835eb9f1187a4d6fc721047fc8151efb1b8f0967ebb1ea5e4fc9ba4fe05cdb6f0b042b6a317a829c36a333393ab69234ca13
@@ -1,17 +1,16 @@
1
1
  # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
2
+ lib = File.expand_path('./lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'monitoring/version'
5
4
 
6
5
  Gem::Specification.new do |spec|
7
6
  spec.name = "jrmonitor"
8
- spec.version = "0.4.1"
7
+ spec.version = "0.4.2"
9
8
  spec.authors = ["Elastic"]
10
9
  spec.email = ["info@elastic.co"]
11
10
 
12
11
  spec.summary = %q{JVM Platform MXBeans wrapper used for monitoring.}
13
12
  spec.description = %q{This gems allows you to access in a Ruby friendly way the internal JVM monitoring tools for things like System, Threads and Memory information}
14
- spec.homepage = "http://www.purbon.com"
13
+ spec.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html"
15
14
  spec.license = "Apache License (2.0)"
16
15
 
17
16
  spec.files = Dir.glob(["jrmonitor.gemspec", "lib/**/*.rb", "spec/**/*.rb", "jruby-ext/target/classes/**/*.class"])
@@ -1,7 +1,6 @@
1
1
  require "java"
2
2
  $CLASSPATH << File.join(File.dirname(__FILE__), "..", "jruby-ext", "target", "classes")
3
3
 
4
- require "monitoring/version"
5
4
  require "com/purbon/jrmonitor/JRMonitor"
6
5
 
7
6
  module JRMonitor
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jrmonitor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-05-18 00:00:00.000000000 Z
11
+ date: 2016-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -95,13 +95,12 @@ files:
95
95
  - jruby-ext/target/classes/com/purbon/jrmonitor/reports/RubySystemReport.class
96
96
  - jruby-ext/target/classes/com/purbon/jrmonitor/reports/RubyThreadsReport.class
97
97
  - lib/jrmonitor.rb
98
- - lib/jrmonitor/version.rb
99
98
  - spec/lib/memory_monitor_spec.rb
100
99
  - spec/lib/process_monitor_spec.rb
101
100
  - spec/lib/system_monitor_spec.rb
102
101
  - spec/lib/thread_monitor_spec.rb
103
102
  - spec/spec_helper.rb
104
- homepage: http://www.purbon.com
103
+ homepage: http://www.elastic.co/guide/en/logstash/current/index.html
105
104
  licenses:
106
105
  - Apache License (2.0)
107
106
  metadata: {}
@@ -1,3 +0,0 @@
1
- module JRMonitor
2
- VERSION = "0.4.1"
3
- end