cedar_policy 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 7410b46f2bfc9344de867185521852b7f95d4511e5b903dd8e451844e0e5b07e
4
+ data.tar.gz: 462c41840176d812a3caa1814eb156ade79833e3dfde0607a1459cb574bd0a1b
5
+ SHA512:
6
+ metadata.gz: c996c04f26847edea288d1aba4f995ab880c825009f197d9f88139065f63f4aa5fc4f62ddd8f86961418bfbcc344b41496a8ffd9d54b33da38f5de86ee0533d9
7
+ data.tar.gz: 2a99f4e6026e3bf6f020128f00a0d9a856f75fce16299a0cd486f834c867dd9e392c54328d3527a951fb064924c793d09969d7e4296b3d348e5085ff7bd08224
data/.cross_rubies ADDED
@@ -0,0 +1,20 @@
1
+ 3.0.0:aarch64-linux
2
+ 3.0.0:arm64-darwin
3
+ 3.0.0:x64-mingw32
4
+ 3.0.0:x86_64-darwin
5
+ 3.0.0:x86_64-linux
6
+ 3.1.0:aarch64-linux
7
+ 3.1.0:arm64-darwin
8
+ 3.1.0:x64-mingw-ucrt
9
+ 3.1.0:x86_64-darwin
10
+ 3.1.0:x86_64-linux
11
+ 3.2.0:aarch64-linux
12
+ 3.2.0:arm64-darwin
13
+ 3.2.0:x64-mingw-ucrt
14
+ 3.2.0:x86_64-darwin
15
+ 3.2.0:x86_64-linux
16
+ 3.3.0:aarch64-linux
17
+ 3.3.0:arm64-darwin
18
+ 3.3.0:x64-mingw-ucrt
19
+ 3.3.0:x86_64-darwin
20
+ 3.3.0:x86_64-linux
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,13 @@
1
+ AllCops:
2
+ NewCops: enable
3
+ TargetRubyVersion: 3.0
4
+
5
+ Style/StringLiterals:
6
+ EnforcedStyle: double_quotes
7
+
8
+ Style/StringLiteralsInInterpolation:
9
+ EnforcedStyle: double_quotes
10
+
11
+ Metrics/BlockLength:
12
+ Exclude:
13
+ - 'spec/**/*'