instana 1.11.0-java → 1.11.1-java

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
  SHA256:
3
- metadata.gz: 4327c6bf5d49c2d73cce62c839e26b29bbef3b595376b9355bc902814839922e
4
- data.tar.gz: 9d0fca4b94cd98ca56df44705a42a95509d5a4b02bd5c8fb4259e126e4d13104
3
+ metadata.gz: cd1cbd04c0c25885c901ea8ef81fd02a42cec07541b40a23133ac191e0ee17fe
4
+ data.tar.gz: 23aa4673f569645a182e6200a94d1f869d44d851710955bf46681142ef5883ab
5
5
  SHA512:
6
- metadata.gz: 8a6152c8fc9dc8f1e7c678036ef7703ea30d9489559580260f2301f85870b37918550744c1d1fd426939e0224db48357b724e26f32b8c6b51f1cd35ec5b1003e
7
- data.tar.gz: 4c7179cd9985fe65255ab7a039cfa2cdc6d42edffe7d936af19a4dd69e616baab13669885773008f86dc0ae08e49eccf8c1c0d6d61ea0be858fa10c9ed2b88e7
6
+ metadata.gz: 001a9a9156206d69ddb14297b1809c98ed82d0b96a39218d776e68bae5ac8e0294bc61a96570fb6072c9a52aa1e3ec71c18992cb280e17a961e2cabae86e15db
7
+ data.tar.gz: b9f91f28d6b554a58788f1d9d741bdb04e2c593c3305ec48d0ce669236f386d86075679bf98b24d749682fdc09538997d1e1b38cca64d5f7cd8482c73a1b354b
@@ -10,9 +10,17 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["pglombardo@gmail.com"]
11
11
 
12
12
  spec.summary = %q{Ruby Distributed Tracing & Metrics Sensor for Instana}
13
- spec.description = %q{The Instana gem collects and reports Ruby metrics and distibuted traces to your Instana dashboard.}
13
+ spec.description = %q{The Instana gem is a zero configuration tool that will automatically collect key metrics and distributed traces from your Ruby processes. Just install and go.}
14
14
  spec.homepage = "https://www.instana.com/"
15
15
 
16
+ spec.metadata = {
17
+ "changelog_uri" => "https://github.com/instana/ruby-sensor/releases",
18
+ "documentation_uri" => "https://docs.instana.io/ecosystem/ruby/",
19
+ "homepage_uri" => "https://www.instana.com/",
20
+ "source_code_uri" => "https://github.com/instana/ruby-sensor",
21
+ }
22
+
23
+ spec.licenses = ['MIT']
16
24
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
25
  spec.bindir = "exe"
18
26
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
@@ -22,8 +30,6 @@ Gem::Specification.new do |spec|
22
30
  spec.required_ruby_version = '>= 2.1'
23
31
  spec.platform = defined?(JRUBY_VERSION) ? 'java' : Gem::Platform::RUBY
24
32
 
25
- spec.licenses = ['MIT']
26
-
27
33
  spec.add_development_dependency "bundler", "~> 2.0"
28
34
  spec.add_development_dependency "rake", "~> 10.0"
29
35
  spec.add_development_dependency "minitest", "~> 5.0"
@@ -175,9 +175,12 @@ module Instana
175
175
  return ENV['INSTANA_SERVICE_NAME']
176
176
  end
177
177
 
178
-
179
- if defined?(::Resque) && ($0 =~ /resque-#{Resque::Version}/)
180
- return "Resque Worker"
178
+ if defined?(::Resque)
179
+ if ($0 =~ /resque-#{Resque::Version}/)
180
+ return "Resque Worker"
181
+ elsif ($0 =~ /resque-pool-master/)
182
+ return "Resque Pool Master"
183
+ end
181
184
  end
182
185
 
183
186
  if defined?(::RailsLts) || defined?(::Rails)
@@ -1,4 +1,4 @@
1
1
  module Instana
2
- VERSION = "1.11.0"
2
+ VERSION = "1.11.1"
3
3
  VERSION_FULL = "instana-#{VERSION}"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: instana
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0
4
+ version: 1.11.1
5
5
  platform: java
6
6
  authors:
7
7
  - Peter Giacomo Lombardo
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-12-10 00:00:00.000000000 Z
11
+ date: 2020-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -122,8 +122,9 @@ dependencies:
122
122
  - - ">="
123
123
  - !ruby/object:Gem::Version
124
124
  version: 1.0.11
125
- description: The Instana gem collects and reports Ruby metrics and distibuted traces
126
- to your Instana dashboard.
125
+ description: The Instana gem is a zero configuration tool that will automatically
126
+ collect key metrics and distributed traces from your Ruby processes. Just install
127
+ and go.
127
128
  email:
128
129
  - pglombardo@gmail.com
129
130
  executables: []
@@ -257,7 +258,11 @@ files:
257
258
  homepage: https://www.instana.com/
258
259
  licenses:
259
260
  - MIT
260
- metadata: {}
261
+ metadata:
262
+ changelog_uri: https://github.com/instana/ruby-sensor/releases
263
+ documentation_uri: https://docs.instana.io/ecosystem/ruby/
264
+ homepage_uri: https://www.instana.com/
265
+ source_code_uri: https://github.com/instana/ruby-sensor
261
266
  post_install_message:
262
267
  rdoc_options: []
263
268
  require_paths: