inferno_core 1.2.0 → 1.2.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: c26c46f8b8de7912869ce0067ab80a593f4f230d4412e120997d059e3682a923
4
- data.tar.gz: 3cd152af0029ce12cc6235e020bbbcc403e0ee1ac00c3b2d4fc71b9c3f72d274
3
+ metadata.gz: 173f64337d9dc56eff789e35b65fa26656ef256316e42fd68ab0c84765175bbc
4
+ data.tar.gz: b6bd2746f865f1f40c3771ef90b01d97ecf3fcd5a40f44dc8ddee6bf46ee616a
5
5
  SHA512:
6
- metadata.gz: 8f64b94122c6ba2d6496cd34b319e0c41c0dbe8674fe92e0c2549083b5e46ba4df4af228e6f9f49eb04e096a69b2762fd348c2100bc6b7a634db81c0b3c1aad5
7
- data.tar.gz: 80210d787389f00532bc296bdcab199fa9000498d4a37218d09d2a520f1abc58013f10d28fa4020ae3018aee39f68fdb0883f78dd02913560ea2beb5d7e0dfd2
6
+ metadata.gz: b20f45985bd53be776773bc5bfe75c693891abee583469768348472f33b1f6afa4ee88da47130624a8cae5a23617ffffb061f2f7ea08a68f3699aa7a0c1c4d96
7
+ data.tar.gz: b709e8ffdf296b5aea82febeb6e1164843f402bb7e8b090ca09ac04e80956732d6df2a796f63e16cce00f1688cf70b8ab83bd0bfbb43ae8cb9d257231a3ba858
@@ -278,7 +278,8 @@ module Inferno
278
278
 
279
279
  def sorted_messages(result)
280
280
  Array(result&.dig('messages')).sort_by do |m|
281
- [MESSAGE_TYPE_ORDER.fetch(m['type'].to_s, UNKNOWN_MESSAGE_TYPE_ORDER), m['message'].to_s]
281
+ [MESSAGE_TYPE_ORDER.fetch(m['type'].to_s, UNKNOWN_MESSAGE_TYPE_ORDER),
282
+ normalize_string(m['message'].to_s)]
282
283
  end
283
284
  end
284
285
 
@@ -1,4 +1,4 @@
1
1
  module Inferno
2
2
  # Standard patterns for gem versions: https://guides.rubygems.org/patterns/
3
- VERSION = '1.2.0'.freeze
3
+ VERSION = '1.2.1'.freeze
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inferno_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen MacVicar