roda-scoutapm 0.1.0 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e8a5ffd2676d83a613affafd83fffad4676bd2a63eefa5a6afc97635ab9ace04
4
- data.tar.gz: 67b45e8a56f652229448c6a0d2421ea259f8d17857a9d56afd1436a8e0c8ed74
3
+ metadata.gz: 45167d05c543a2212344b604384783c5ace0d07e48b8e1c97fb09747b459cbf7
4
+ data.tar.gz: 4f2c446cc7df726e6cd2055c7a71326cc90aa0bd97d9abf1ee79752e3cf3b843
5
5
  SHA512:
6
- metadata.gz: 6ba928b665363d4933d05fdce9acd9ac862d84b7ab083854016576c7c1f453dae8545f7151aeec31eef1c4b2d2f6db1abd3c338934c6f2e075033373af34fbfb
7
- data.tar.gz: b63f9baedac17e1d9744e2b40d06da619a38e8d100e1401a292f828e8e8800c7d3c80d3c1d6afa0daf66102e4833bbc2242614352022427301e3cfd8799a48ff
6
+ metadata.gz: eceae0beddec7717e8011f76a107bc772aab89b59968418c6761424e3fe2fa67877418590e5ccc85c6611461e5fda78b604a0eef8e0aa1d33c8a07fd334438b5
7
+ data.tar.gz: a2d39c9d18bad7223b9d1ae8ab84c5be4e9f9ded3ef4599d5884fb89ed7e3d7dc19fa7e40cec7a22c052670cf5f5843cf41f7ecd0f099770379c272bb4df8095
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.2] - 2022-11-11
4
+
5
+ - Fix for specs
6
+
3
7
  ## [0.1.0] - 2022-11-11
4
8
 
5
9
  - Initial release
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- roda-scoutapm (0.1.0)
4
+ roda-scoutapm (0.1.2)
5
5
  roda
6
6
  scout_apm
7
7
 
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
- # Roda::Scoutapm
1
+ # Roda plugin for ScoutApm instrumentation
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/roda/scoutapm`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ This plugin adds [ScoutApm](https://scoutapm.com/) instrumentation to [Roda](https://github.com/jeremyevans/roda) applications.
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
5
+ It uses ScoutApm [Rack instrumentation ](https://scoutapm.com/docs/ruby/rack)
6
6
 
7
7
  ## Installation
8
8
 
@@ -16,7 +16,33 @@ If bundler is not being used to manage dependencies, install the gem by executin
16
16
 
17
17
  ## Usage
18
18
 
19
- TODO: Write usage instructions here
19
+ First, you need to add credentials to config/scout_apm.yml or ENV variables as ScoutApm requires.
20
+
21
+ Than you need to add the ScoutApm::Rack.install! startup call as close to the spot you run your Rack application as possible. install! should be called after you require other gems (ActiveRecord, Mongo, etc) to install instrumentation for those libraries.
22
+
23
+ ```ruby
24
+ #config.ru
25
+ require_relative 'app'
26
+
27
+ require 'scout_apm'
28
+ ScoutApm::Rack.install!
29
+
30
+ run App
31
+ ```
32
+
33
+ ```ruby
34
+ class App < Roda
35
+ plugin :scoutapm
36
+
37
+ route do |r|
38
+ r.is 'foo' do
39
+ r.get do
40
+ 'hello world'
41
+ end
42
+ end
43
+ end
44
+ end
45
+ ```
20
46
 
21
47
  ## Development
22
48
 
@@ -26,7 +52,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
26
52
 
27
53
  ## Contributing
28
54
 
29
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/roda-scoutapm.
55
+ Bug reports and pull requests are welcome on GitHub at https://github.com/Alexey2257/roda-scoutapm.
30
56
 
31
57
  ## License
32
58
 
@@ -3,7 +3,7 @@
3
3
  class Roda
4
4
  module RodaPlugins
5
5
  module Scoutapm
6
- VERSION = "0.1.0"
6
+ VERSION = "0.1.2"
7
7
  end
8
8
  end
9
9
  end
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
- require_relative '../../blank'
2
+
3
+ require_relative "../../blank"
3
4
 
4
5
  class Roda
5
6
  module RodaPlugins
@@ -15,7 +16,11 @@ class Roda
15
16
  private
16
17
 
17
18
  def always
18
- ScoutApm::Rack.transaction(inspect.gsub(/[#<>]/, ''), env) do
19
+ if defined? ::ScoutApm
20
+ ::ScoutApm::Rack.transaction(inspect.gsub(/[#<>]/, ""), env) do
21
+ super
22
+ end
23
+ else
19
24
  super
20
25
  end
21
26
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roda-scoutapm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexey Ivanov
@@ -72,7 +72,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - ">="
74
74
  - !ruby/object:Gem::Version
75
- version: '0'
75
+ version: '2.6'
76
76
  required_rubygems_version: !ruby/object:Gem::Requirement
77
77
  requirements:
78
78
  - - ">="