fhirpath-rb 0.1.5 → 0.1.6

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: b7007532f7d9366bec18526de62ab2f5d60fb5a42883053eb51885f47c70faff
4
- data.tar.gz: 7c52632221c5ae189d621063ee28b450629f740bd12fe392d189955446e64069
3
+ metadata.gz: 9e51880e94b9a5d8d71f711ff82fc13fe710ed025ab039b0e39db09de1efca37
4
+ data.tar.gz: d1bb5885e569d95602ac754697862d0d93c779623ed1970f88e8b96b424ded94
5
5
  SHA512:
6
- metadata.gz: faf8e60216664a0f8a6e2856f3a1eefb0c77c9cfc96ac5ac2b7013485bd15315627f0cab97574462f18de05570a4c4010777712e697bb43686578849324e38d2
7
- data.tar.gz: f2e275ae41f92b103b1762b90efe7e6d167329534388f6f3dc57a606a114f6bd58350ee8cab973cd2fdf09d93c1851d581d5ba79bc0be4507c461bca51aeefa9
6
+ metadata.gz: a302966484562a03a313ce505526efc66bf70b3071d5a79736cdd471d71d7c987f609d9c14fc4b2e1159195c58d4cb87058a06c123e11ba447a874f65071a22a
7
+ data.tar.gz: 6c2285e82bc7e5d9ad07f351602a84940e20cb8f092fe6fb0123af0f5de8f5519e7639d3dd74c1ccede346007c9a7306efc8c99b6f752d06dc3518639c430683
data/.rubocop.yml CHANGED
@@ -2,6 +2,15 @@ AllCops:
2
2
  TargetRubyVersion: 3.0
3
3
  # Standalone app with its own Gemfile/CI/.rubocop.yml (server/.rubocop.yml) - not part of this
4
4
  # gem's bundle or lint run.
5
+ #
6
+ # inherit_mode merge is required here: setting AllCops/Exclude at all, without it, REPLACES
7
+ # (rather than adds to) RuboCop's own built-in default Exclude list (vendor/**/*, tmp/**/*,
8
+ # node_modules/**/*, .git/**/*) - see https://docs.rubocop.org/rubocop/configuration.html#inheritance.
9
+ # That's what silently exposed vendor/bundle/ (bundler-cache's install dir in CI) to linting
10
+ # once this Exclude entry was added for server/.
11
+ inherit_mode:
12
+ merge:
13
+ - Exclude
5
14
  Exclude:
6
15
  - "server/**/*"
7
16
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Fhirpath
4
- VERSION = "0.1.5"
4
+ VERSION = "0.1.6"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fhirpath-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - beda.software