s3_zipper 1.0.5 → 1.0.6

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: d141bd69a9eb29e50cf3781c59f215254e18d51665abc1198a0967ad3a922abe
4
- data.tar.gz: 05330c23b72f68b5835a7366c3e4e0068e047d5c65634b96649e9d3045806fd6
3
+ metadata.gz: 9c6bba2b25177fd9baca16cb08efb190bef22a48d25e77650d02c337b3269b85
4
+ data.tar.gz: 559d7065fbd91f8f59514abf6ebee225b6a7253f478ff02ffe396f31e1000782
5
5
  SHA512:
6
- metadata.gz: d3835736db7015aadfadba7fe643b6581721ec582af4414c5a07496b322fd3db0245c49d20c53466af1e9765467cb218d49d9f5e116044882c82e4f29f484df8
7
- data.tar.gz: c305141de9bd88f8fe2757b6cd2fe8dc9b037f7ba4860fb746acd735b84103149a25c22e312583f9ca4707f89487ed1c095526fcd6d137ed0749bda5b05fb6bc
6
+ metadata.gz: 2bdc7b07337e40797e67da68fe1a5607f7d9df367024f275303f886879592360d49e143782ba9d19e78dc072a6d3dde8ebd67b19d578fdfe6ddb5871a39b261c
7
+ data.tar.gz: ddcbcfc950c3584fd8df1981ca41cb286609d5892f5816b7f027d0b9afd350676a8bbb266369c80ed9d508febc955519159879492bbf94025292e0ebac80afa3
data/.rubocop.yml ADDED
@@ -0,0 +1,174 @@
1
+ inherit_from: .rubocop_todo.yml
2
+ ###################### CONFIGURATION ######################
3
+
4
+ AllCops:
5
+ StyleGuideBaseURL: "https://github.com/capshareinc/capshare/blob/master/doc/style_guide/ruby.md"
6
+ TargetRubyVersion: 2.3
7
+ DisplayStyleGuide: true
8
+ DisabledByDefault: true
9
+
10
+ Rails:
11
+ Enabled: true
12
+
13
+ ###################### LAYOUT ######################
14
+
15
+ Layout/AccessModifierIndentation:
16
+ Enabled: true
17
+ StyleGuide: "#indent-access-assignment"
18
+
19
+ Layout/AlignArray:
20
+ Enabled: true
21
+
22
+ Layout/CaseIndentation:
23
+ Enabled: true
24
+ StyleGuide: "#indent-when-as-case"
25
+
26
+ Layout/DotPosition:
27
+ Enabled: true
28
+ EnforcedStyle: leading
29
+
30
+ Layout/DefEndAlignment:
31
+ Enabled: true
32
+
33
+ Layout/ElseAlignment:
34
+ Enabled: true
35
+
36
+ Layout/EmptyLinesAroundClassBody:
37
+ Enabled: true
38
+ EnforcedStyle: no_empty_lines
39
+
40
+ Layout/EmptyLineAfterMagicComment:
41
+ Enabled: true
42
+
43
+ Layout/EmptyLines:
44
+ Enabled: true
45
+
46
+ Layout/SpaceBeforeBlockBraces:
47
+ Enabled: true
48
+ StyleGuide: "#spaces-operators"
49
+
50
+ Layout/SpaceInsideBlockBraces:
51
+ Enabled: true
52
+ StyleGuide: "#spaces-operators"
53
+
54
+ Layout/FirstArrayElementLineBreak:
55
+ Enabled: true
56
+
57
+ Layout/FirstHashElementLineBreak:
58
+ Enabled: true
59
+
60
+ Layout/FirstMethodArgumentLineBreak:
61
+ Enabled: true
62
+
63
+ Layout/InitialIndentation:
64
+ Enabled: true
65
+
66
+ Layout/MultilineArrayBraceLayout:
67
+ Enabled: true
68
+ EnforcedStyle: symmetrical
69
+
70
+ Layout/MultilineBlockLayout:
71
+ Enabled: true
72
+
73
+ Layout/SpaceAfterMethodName:
74
+ Enabled: true
75
+
76
+ Layout/SpaceInsideHashLiteralBraces:
77
+ Enabled: true
78
+
79
+ Layout/IndentationConsistency:
80
+ Enabled: true
81
+
82
+ Layout/TrailingBlankLines:
83
+ Enabled: true
84
+
85
+ Layout/TrailingWhitespace:
86
+ Enabled: true
87
+ StyleGuide: "#trailing-whitespace"
88
+
89
+ Layout/AlignParameters:
90
+ Enabled: true
91
+
92
+ Layout/MultilineMethodCallBraceLayout:
93
+ Enabled: true
94
+ EnforcedStyle: symmetrical
95
+
96
+ Layout/MultilineMethodCallIndentation:
97
+ Enabled: true
98
+ EnforcedStyle: aligned
99
+
100
+ Layout/SpaceAfterComma:
101
+ Enabled: true
102
+ StyleGuide: "#spaces-operators"
103
+
104
+ Layout/SpaceAroundOperators:
105
+ Enabled: true
106
+ StyleGuide: "#spaces-operators"
107
+
108
+ Layout/SpaceBeforeComma:
109
+ Enabled: true
110
+ StyleGuide: "##no-space-before-commas"
111
+
112
+ Layout/SpaceAroundBlockParameters:
113
+ Enabled: true
114
+ StyleGuide: "#spaces-block-params"
115
+
116
+ Layout/SpaceAfterNot:
117
+ Enabled: true
118
+ StyleGuide: "#no-space-after-!"
119
+
120
+ Layout/SpaceInsideRangeLiteral:
121
+ Enabled: true
122
+ StyleGuide: "#no-spaces-range-literals"
123
+
124
+ Layout/SpaceInsideStringInterpolation:
125
+ Enabled: true
126
+ StyleGuide: "#no-spaces-string-interpolation"
127
+
128
+ Layout/IndentFirstHashElement:
129
+ Enabled: true
130
+ EnforcedStyle: consistent
131
+
132
+ Layout/AlignHash:
133
+ Enabled: true
134
+ EnforcedHashRocketStyle: table
135
+ EnforcedColonStyle: table
136
+
137
+
138
+
139
+ ###################### Style ######################
140
+
141
+ Style/RedundantReturn:
142
+ Enabled: true
143
+
144
+ Style/RedundantSelf:
145
+ Enabled: true
146
+
147
+ Style/MethodDefParentheses:
148
+ Enabled: true
149
+ EnforcedStyle: require_no_parentheses
150
+
151
+ Style/StringLiterals:
152
+ Enabled: true
153
+ EnforcedStyle: double_quotes
154
+
155
+ Style/TrailingCommaInArguments:
156
+ Enabled: true
157
+ EnforcedStyleForMultiline: comma
158
+
159
+ Style/FrozenStringLiteralComment:
160
+ Enabled: true
161
+
162
+ Style/TrailingCommaInArrayLiteral:
163
+ Enable: true
164
+ EnforcedStyleForMultiline: comma
165
+
166
+ Style/TrailingCommanInHashLiteral:
167
+ Enable: true
168
+ EnforcedStyleForMultiline: comma
169
+
170
+ #Style/MultilineTernaryOperator:
171
+ # Enable: true
172
+
173
+ #Style/StringHashKeys:
174
+ # Enable: true