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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 45167d05c543a2212344b604384783c5ace0d07e48b8e1c97fb09747b459cbf7
4
- data.tar.gz: 4f2c446cc7df726e6cd2055c7a71326cc90aa0bd97d9abf1ee79752e3cf3b843
3
+ metadata.gz: b2d841f5f709f8a5a25de0c3e2cbd117475f74c7a333c12465ea4ab55f996d9e
4
+ data.tar.gz: 24bfd4bd3f231597a5dbcd550c2aa6b527345b7c5113cc37531094c40974d148
5
5
  SHA512:
6
- metadata.gz: eceae0beddec7717e8011f76a107bc772aab89b59968418c6761424e3fe2fa67877418590e5ccc85c6611461e5fda78b604a0eef8e0aa1d33c8a07fd334438b5
7
- data.tar.gz: a2d39c9d18bad7223b9d1ae8ab84c5be4e9f9ded3ef4599d5884fb89ed7e3d7dc19fa7e40cec7a22c052670cf5f5843cf41f7ecd0f099770379c272bb4df8095
6
+ metadata.gz: f73c7df1298c1d874289a00bd3185f04fb5c552863136ba3849f3f4a98101dda4a20bcb220b4fad599d3eff9c4e44b48122910306ae9f4cf9813987b5746d794
7
+ data.tar.gz: 8cc57db8f374921d1df4147ca687a024b30391b3f39c2cabdb112f2a7b14740360bc7664791bcfab40a660636cea8db821058c484517b5bae1f2de8b5dc583d5
data/.rubocop.yml CHANGED
@@ -1,5 +1,7 @@
1
1
  AllCops:
2
+ SuggestExtensions: false
2
3
  TargetRubyVersion: 2.6
4
+ NewCops: enable
3
5
 
4
6
  Style/StringLiterals:
5
7
  Enabled: true
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.3] - 2022-11-26
4
+
5
+ - Fix blank method definition when it's not needed, e.g. in Rails apps
6
+
3
7
  ## [0.1.2] - 2022-11-11
4
8
 
5
9
  - Fix for specs
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- roda-scoutapm (0.1.2)
4
+ roda-scoutapm (0.1.3)
5
5
  roda
6
6
  scout_apm
7
7
 
@@ -3,7 +3,7 @@
3
3
  class Roda
4
4
  module RodaPlugins
5
5
  module Scoutapm
6
- VERSION = "0.1.2"
6
+ VERSION = "0.1.3"
7
7
  end
8
8
  end
9
9
  end
@@ -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
- # module ClassMethods
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.2
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-12 00:00:00.000000000 Z
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: