fhirpath-rb 0.1.5 → 0.1.7

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: 231f2875bc45e4d0b9e553530cb241bf04f30cb5b1670b4eba9a395b59d19d5d
4
+ data.tar.gz: bf0ff064ace94ed84c5c150978b9f28ae55b74799fd80b1795214e0780b8d5d7
5
5
  SHA512:
6
- metadata.gz: faf8e60216664a0f8a6e2856f3a1eefb0c77c9cfc96ac5ac2b7013485bd15315627f0cab97574462f18de05570a4c4010777712e697bb43686578849324e38d2
7
- data.tar.gz: f2e275ae41f92b103b1762b90efe7e6d167329534388f6f3dc57a606a114f6bd58350ee8cab973cd2fdf09d93c1851d581d5ba79bc0be4507c461bca51aeefa9
6
+ metadata.gz: a59d890589935705e48e3bcbf58cd650c25b67b8fc11adb5caa2bc8662665107f1c20ba19295687e210e924a6127788f8dbb393a2820e5a3769fb702a3eccd27
7
+ data.tar.gz: 135c545d76c3a9a67c856ec1adb75984d64f0709535f20668965dd66773d3e99fe108e200ac1e1947de5751346e0a730d9ec4d9ad904daa918a9892eb07130de
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.7"
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.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - beda.software