roda-appsignal 1.1.0 → 1.1.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: 30ff00b9d090a6e013428af44a3e57d2f315b40f41d16131edc4eb935161d639
4
- data.tar.gz: 5d58424ea81328d2e56af79d1053d179fe545259a29091e4deb85ef2b03b5c28
3
+ metadata.gz: b6075c68269da159068b134fa54144a4c3f9967ab89401ed4c389d73e470a7f2
4
+ data.tar.gz: e4af564d026fad7c195206ded5a0b86a82f2c5daad8e5e72b75e82916b110168
5
5
  SHA512:
6
- metadata.gz: eb5185990125e3afdda78422d96077cec91133ca55a3cc9cdc17747c76b23e03bfb4ea2d48e85f38c8c5a70a13de0623bc44e77e189514988b13b6bc29a50f72
7
- data.tar.gz: 68aea34e5952ea398a9e94b917e605dd0aaf0754c1cbb9e556be663d79f71dc632ffdf718c9fc43f46ae9506ed57e1feb34026f19632b0eff7960fa0177ee0bf
6
+ metadata.gz: 38b295d5c519fd010c9f4a399854cf846a72b7bca69dcc7bbbcb48a82b40ccb08cee4b4e7c0ec6e54e7809a8f44f3b4a4b08a1ee299ede65bd609decd8c13a8d
7
+ data.tar.gz: 596bf6cf4a85022a2a2dd3fedf858169f5074fac54008df57cc4f99a25b01edae4ec3d9f876341eb3a9e2d0158f6196709ac79e3cd80c5ef99a8b5478151d209
@@ -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
+ ## [1.1.1] - 2019-10-18
18
+ ### Fixed
19
+ - Prevent modification of frozen strings.
20
+
17
21
  ## [1.1.0] - 2019-10-18
18
22
  ### Added
19
23
  - Allow for sanitization of action name.
@@ -7,7 +7,7 @@ class Roda
7
7
  # Example:
8
8
  #
9
9
  # plugin :appsignal
10
- # plugin :appsignal, proc { |action_name| action_name.gsub!(/\d+\/, '') }
10
+ # plugin :appsignal, proc { |action_name| action_name.gsub(/\d+\/, '') }
11
11
  #
12
12
  module Appsignal
13
13
  def self.configure(app, sanitize = proc { |name| name })
@@ -20,7 +20,7 @@ class Roda
20
20
 
21
21
  def _roda_before_10__appsignal
22
22
  ::Appsignal.set_action(
23
- opts[:appsignal_sanitize].call(request.inspect.gsub!(/#|<|>/, ''))
23
+ opts[:appsignal_sanitize].call(request.inspect.gsub(/#|<|>/, ''))
24
24
  )
25
25
  end
26
26
  end
@@ -3,7 +3,7 @@
3
3
  class Roda
4
4
  module RodaPlugins
5
5
  module Appsignal
6
- VERSION = '1.1.0'
6
+ VERSION = '1.1.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: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - andjosh