patchwork_csv_utils 0.1.10-aarch64-linux

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: 5aa3b79c5be0532c2aa741dcaa4d6745698d8f272235a344d8a4b139c4fa825c
4
+ data.tar.gz: db1f810975a11518734f320cb75fea01ba04e492abed9fe4881e432b3028143c
5
+ SHA512:
6
+ metadata.gz: e25e45824b89de311ef2062fcc06495fd3bca78d4a5ce548a033a1089cb91adec978ec143ce64a1e8e21fe3686edd9413eb1d762759a68572e767b35d6186b2d
7
+ data.tar.gz: 3db9305225ef457729a84fd2eeb6ad4704bf46e7ab7c0f08429f9c27c2ec2f36463bb4490656385c9e9352b56dae41d4f1b5aa05cb35dfe720dde0e904454d2a
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,30 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.7
3
+ SuggestExtensions: false
4
+ NewCops: enable
5
+
6
+ Style/StringLiterals:
7
+ Enabled: true
8
+ EnforcedStyle: single_quotes
9
+
10
+ Style/Documentation:
11
+ Enabled: false
12
+
13
+ Style/StringLiteralsInInterpolation:
14
+ Enabled: true
15
+ EnforcedStyle: double_quotes
16
+
17
+ Layout/LineLength:
18
+ Max: 120
19
+
20
+ Metrics/BlockLength:
21
+ Max: 120
22
+
23
+ Gemspec/RequireMFA:
24
+ Enabled: false
25
+
26
+
27
+
28
+
29
+
30
+