roda-appsignal 2.0.0 → 2.0.1

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: b785dd30fbb7e49462f88516a4054f34e24e7d0fc63e1b413fff111836e8766d
4
- data.tar.gz: ff1eb89cfc729a56a89e2030fd7ad0f7074b43ce7196b551032eb6d298ef2acf
3
+ metadata.gz: 72b1a4725842ca5ce2159d145ca3efc7aeda5ef2b6419d0c35c4d6135177d0ee
4
+ data.tar.gz: 59800b47cf348536ef391b8ab7139e3b8f8995f27a51449e8348dfd601fa824e
5
5
  SHA512:
6
- metadata.gz: ae22403ba5f2e7551611956c035180179af5d2b2390ecfe3385a2cd813b7fd0d293ee794229158e9a6578a507348728b82547b1d0f07eea0d8e56d2fec889282
7
- data.tar.gz: 67de01d813c2225cd2a8f9426aa03858419582857e9766ee0dc25041b335a2cd5743887c60112fd54009de22035cc52352eb56cd6315d9c8c708b83bd56bd5aa
6
+ metadata.gz: cd5f432de8f8768de18d325e10588d799cfe371d85b893f3289fa02f3e43b204014aa34eed26e0360a055b4b96c10254c5ee48822dd9a4a629742369b67e23d6
7
+ data.tar.gz: 96cd54e7d2fd1eb7c1af2c8cf989ff20e7b240d11164cbef99eb01f37793f5d52bafb141e1c1be01b7f2d666ac77dc49725b10c61af16794b54aad67ef4d6683
data/CHANGELOG.md CHANGED
@@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
14
 
15
15
  ---
16
16
 
17
+ ## [2.0.1] - 2019-10-23
18
+ ### Fixed
19
+ - Fix typo in namespace param
20
+
17
21
  ## [2.0.0] - 2019-10-23
18
22
  ### Added
19
23
  - Support custom namespaces
@@ -9,12 +9,12 @@ class Roda
9
9
  #
10
10
  # plugin :appsignal
11
11
  # plugin :appsignal, sanitize: proc { |action_name| action_name.gsub(/\d+\/, '') }
12
- # plugin :appsignal, namespeace: 'custom_namespace'
12
+ # plugin :appsignal, namespace: 'custom_namespace'
13
13
  #
14
14
  module Appsignal
15
- def self.configure(app, namespeace: 'web', sanitize: proc { |name| name })
15
+ def self.configure(app, namespace: 'web', sanitize: proc { |name| name })
16
16
  app.opts[:appsignal_sanitize] = sanitize
17
- app.opts[:appsignal_namespace] = namespeace
17
+ app.opts[:appsignal_namespace] = namespace
18
18
  app.use ::Appsignal::Rack::GenericInstrumentation
19
19
  end
20
20
 
@@ -3,7 +3,7 @@
3
3
  class Roda
4
4
  module RodaPlugins
5
5
  module Appsignal
6
- VERSION = '2.0.0'
6
+ VERSION = '2.0.1'
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roda-appsignal
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - andjosh