sorbet_typed-props 1.2.14 → 1.2.16
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/.cz.yaml +1 -1
- data/.semgrep/custom_rules.yml +9 -0
- data/.semgrepignore +7 -0
- data/{.shellcheckrc.tmp → .shellcheckrc} +0 -2
- data/CHANGELOG.md +12 -0
- data/README.md +1 -1
- data/lib/sorbet_typed/props/version.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 798a0c8f2971587b2628669731be2e72066a99e4ba6cd330623e83f678141b79
|
|
4
|
+
data.tar.gz: 0e678b13dd0166d0debd88f44dc08212aff33a0988fbb0618ef6865b122e102e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a43053f4b0d496d651cda0ca9287dbbd0e265b58ce4290bf468e9acc218d8161213a2148114fce300fe6bd0b7cbff5c50273e470488ccb3d5a5f148c2ff33dc
|
|
7
|
+
data.tar.gz: acc3bae024b5a709608f8ab65137ad0c713c1f17c68d76b77633fb1ad1f26fc7eba5d913f45fb130738f9f4e21f28d683c820bd2914afaf3e02e991406432e23
|
data/.cz.yaml
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
rules:
|
|
2
|
+
- id: allowed-comment-tags
|
|
3
|
+
severity: ERROR
|
|
4
|
+
languages:
|
|
5
|
+
- none
|
|
6
|
+
message: >
|
|
7
|
+
Comments tagged with something else than `DEBT`, `HACK` or `NOTE` should be resolved before finishing a
|
|
8
|
+
feature/MR.
|
|
9
|
+
pattern-regex: '(<\!--|\/\/|#|\/\*|--)\h*\b(?!(DEBT|HACK|NOTE))[A-Z]+\b:[^:]'
|
data/.semgrepignore
ADDED
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -194,7 +194,7 @@ can also run `mise task ls` for a list of available tasks.
|
|
|
194
194
|
|
|
195
195
|
RSpec is used as test suite. Spec files can and should be placed right beside their associated class files.
|
|
196
196
|
|
|
197
|
-
<!--
|
|
197
|
+
<!-- DEBT: develop and document release workflow -->
|
|
198
198
|
|
|
199
199
|
<!-- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the
|
|
200
200
|
version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version,
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sorbet_typed-props
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.16
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Richard Kramer
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: 0.6.0
|
|
19
19
|
- - "<="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 0.6.
|
|
21
|
+
version: 0.6.12872
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: 0.6.0
|
|
29
29
|
- - "<="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 0.6.
|
|
31
|
+
version: 0.6.12872
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: tapioca
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -60,7 +60,9 @@ extra_rdoc_files: []
|
|
|
60
60
|
files:
|
|
61
61
|
- ".cz.yaml"
|
|
62
62
|
- ".pre-commit-config.yaml"
|
|
63
|
-
- ".
|
|
63
|
+
- ".semgrep/custom_rules.yml"
|
|
64
|
+
- ".semgrepignore"
|
|
65
|
+
- ".shellcheckrc"
|
|
64
66
|
- CHANGELOG.md
|
|
65
67
|
- COPYING
|
|
66
68
|
- README.md
|