roda-scoutapm 0.1.2 → 0.1.3
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/.rubocop.yml +2 -0
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/roda/plugins/scoutapm/version.rb +1 -1
- data/lib/roda/plugins/scoutapm.rb +3 -8
- data/roda-scoutapm.gemspec +38 -0
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b2d841f5f709f8a5a25de0c3e2cbd117475f74c7a333c12465ea4ab55f996d9e
|
|
4
|
+
data.tar.gz: 24bfd4bd3f231597a5dbcd550c2aa6b527345b7c5113cc37531094c40974d148
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f73c7df1298c1d874289a00bd3185f04fb5c552863136ba3849f3f4a98101dda4a20bcb220b4fad599d3eff9c4e44b48122910306ae9f4cf9813987b5746d794
|
|
7
|
+
data.tar.gz: 8cc57db8f374921d1df4147ca687a024b30391b3f39c2cabdb112f2a7b14740360bc7664791bcfab40a660636cea8db821058c484517b5bae1f2de8b5dc583d5
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require_relative "../../blank"
|
|
3
|
+
require_relative "../../blank" unless String.new.respond_to?(:blank?)
|
|
4
4
|
|
|
5
5
|
class Roda
|
|
6
|
+
# Integrate in Roda
|
|
6
7
|
module RodaPlugins
|
|
7
8
|
module Scoutapm
|
|
8
|
-
#
|
|
9
|
-
# def call(env)
|
|
10
|
-
# ScoutApm::Rack.transaction(env['REQUEST_PATH'], env) do
|
|
11
|
-
# app.call(env)
|
|
12
|
-
# end
|
|
13
|
-
# end
|
|
14
|
-
# end
|
|
9
|
+
# Inspect transaction on every request
|
|
15
10
|
module RequestMethods
|
|
16
11
|
private
|
|
17
12
|
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
lib = File.expand_path("lib", __dir__)
|
|
4
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
5
|
+
require "roda/plugins/scoutapm/version"
|
|
6
|
+
|
|
7
|
+
Gem::Specification.new do |spec|
|
|
8
|
+
spec.name = "roda-scoutapm"
|
|
9
|
+
spec.version = Roda::RodaPlugins::Scoutapm::VERSION
|
|
10
|
+
spec.authors = ["Alexey Ivanov"]
|
|
11
|
+
spec.email = ["a.ivanov@3commas.io"]
|
|
12
|
+
|
|
13
|
+
spec.summary = "ScoutApm instrumentation for Roda apps/routes"
|
|
14
|
+
spec.description = "ScoutApm instrumentation for Roda apps/routes"
|
|
15
|
+
spec.homepage = "https://github.com/Alexey2257/roda-scoutapm"
|
|
16
|
+
spec.license = "MIT"
|
|
17
|
+
spec.required_ruby_version = ">= 2.6"
|
|
18
|
+
|
|
19
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
|
20
|
+
spec.metadata["source_code_uri"] = "https://github.com/Alexey2257/roda-scoutapm"
|
|
21
|
+
spec.metadata["changelog_uri"] = "https://github.com/Alexey2257/roda-scoutapm/CHANGELOG"
|
|
22
|
+
|
|
23
|
+
# Specify which files should be added to the gem when it is released.
|
|
24
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
25
|
+
spec.files = Dir.chdir(__dir__) do
|
|
26
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
|
27
|
+
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
spec.bindir = "exe"
|
|
31
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
|
32
|
+
spec.require_paths = ["lib"]
|
|
33
|
+
|
|
34
|
+
spec.add_dependency "roda"
|
|
35
|
+
spec.add_dependency "scout_apm"
|
|
36
|
+
|
|
37
|
+
spec.metadata["rubygems_mfa_required"] = "true"
|
|
38
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: roda-scoutapm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexey Ivanov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-11-
|
|
11
|
+
date: 2022-11-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: roda
|
|
@@ -56,6 +56,7 @@ files:
|
|
|
56
56
|
- lib/roda/plugins/scoutapm.rb
|
|
57
57
|
- lib/roda/plugins/scoutapm/version.rb
|
|
58
58
|
- lib/roda/scoutapm.rb
|
|
59
|
+
- roda-scoutapm.gemspec
|
|
59
60
|
- sig/roda/scoutapm.rbs
|
|
60
61
|
homepage: https://github.com/Alexey2257/roda-scoutapm
|
|
61
62
|
licenses:
|
|
@@ -64,6 +65,7 @@ metadata:
|
|
|
64
65
|
homepage_uri: https://github.com/Alexey2257/roda-scoutapm
|
|
65
66
|
source_code_uri: https://github.com/Alexey2257/roda-scoutapm
|
|
66
67
|
changelog_uri: https://github.com/Alexey2257/roda-scoutapm/CHANGELOG
|
|
68
|
+
rubygems_mfa_required: 'true'
|
|
67
69
|
post_install_message:
|
|
68
70
|
rdoc_options: []
|
|
69
71
|
require_paths:
|