eppo-server-sdk 0.3.0 → 3.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a49644b2f5b546e818c775dd1039ffe8cce65d0d9ef9fb638d07ee29218f6d45
4
- data.tar.gz: ca6f781679ab965a7c4965a009b35db39ab59a008987d96dacd63d85210aa0fe
3
+ metadata.gz: 0775052b633fb2f4c3e82a21ba50639991ca4b42ff0a50a55c4ab2b529aa4719
4
+ data.tar.gz: 4f458d1564173ade8642ebdc81b470bc428e5a7e1b0d63b69ad2457e1f8c9d0b
5
5
  SHA512:
6
- metadata.gz: d55ec3fde4eb47875442968795f5990d6856cd59ac007d9188adddf09a98ae480d2711745a85795fff5ff2acf95ea8de534b5d29c6fccec63ff016aea0c503f2
7
- data.tar.gz: 259184f4656e52ea8f02cc342e8a00d8153e207faa9bbdc08c801d7892fa2c0153315d939565045457c4041b7db87df1bdf30b81cc830333811d9549843bd736
6
+ metadata.gz: f4b94d40808f4bd2d4db185a4f433049a5613f1e8960e602adcc8d535fc32a7ce0393076c701f9b3e60decbcfdd77fd61740c49f2fcacb52ad08cf60362cd94a
7
+ data.tar.gz: 770153966e5026e5d53fcd985fb0f3cc3d6ede13a779d4ec6b6f6b98300e9b1fa6daecfcde81f02c9df56e9d0323b3cd770d24462c653ba6e0a2ecccd88af122
data/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ *.bundle
10
+ *.so
11
+ *.o
12
+ *.a
13
+ mkmf.log
14
+ target/
15
+ *.gem
16
+
17
+ # rspec failure tracking
18
+ .rspec_status
19
+
20
+ # .cargo/config.toml should be used for testing with local version of
21
+ # eppo_core but it should not be committed.
22
+ /.cargo/config.toml
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,8 @@
1
+ AllCops:
2
+ TargetRubyVersion: 3.0
3
+
4
+ Style/StringLiterals:
5
+ EnforcedStyle: double_quotes
6
+
7
+ Style/StringLiteralsInInterpolation:
8
+ EnforcedStyle: double_quotes