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 +4 -4
- data/.rubocop.yml +9 -0
- data/lib/fhirpath/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 231f2875bc45e4d0b9e553530cb241bf04f30cb5b1670b4eba9a395b59d19d5d
|
|
4
|
+
data.tar.gz: bf0ff064ace94ed84c5c150978b9f28ae55b74799fd80b1795214e0780b8d5d7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
data/lib/fhirpath/version.rb
CHANGED