lolcommits 0.5.6 → 0.5.7
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 +8 -8
- data/.rubocop.yml +3 -4
- data/.rubocop_todo.yml +202 -0
- data/.travis.yml +2 -7
- data/CHANGELOG +9 -3
- data/Rakefile +4 -4
- data/bin/lolcommits +11 -1
- data/features/support/env.rb +1 -1
- data/lib/lolcommits/git_info.rb +25 -11
- data/lib/lolcommits/plugins/lol_twitter.rb +61 -25
- data/lib/lolcommits/plugins/lolsrv.rb +4 -4
- data/lib/lolcommits/plugins/uploldz.rb +9 -6
- data/lib/lolcommits/runner.rb +8 -11
- data/lib/lolcommits/version.rb +1 -1
- data/lolcommits.gemspec +31 -29
- data/test/test_lolcommits.rb +18 -14
- metadata +105 -105
- data/rubocop-todo.yml +0 -249
data/rubocop-todo.yml
DELETED
@@ -1,249 +0,0 @@
|
|
1
|
-
# This configuration was generated by `rubocop --auto-gen-config`
|
2
|
-
# on 2014-02-10 12:40:38 -0500 using RuboCop version 0.18.1.
|
3
|
-
# The point is for the user to remove these configuration records
|
4
|
-
# one by one as the offences are removed from the code base.
|
5
|
-
# Note that changes in the inspected code, or installation of new
|
6
|
-
# versions of RuboCop, may require this file to be generated again.
|
7
|
-
|
8
|
-
# Offence count: 22
|
9
|
-
AmbiguousRegexpLiteral:
|
10
|
-
Enabled: false
|
11
|
-
|
12
|
-
# Offence count: 1
|
13
|
-
CaseEquality:
|
14
|
-
Enabled: false
|
15
|
-
|
16
|
-
# Offence count: 1
|
17
|
-
# Configuration parameters: IndentWhenRelativeTo, SupportedStyles, IndentOneStep.
|
18
|
-
# NOTE: Not sure I agree with this one. -mroth
|
19
|
-
CaseIndentation:
|
20
|
-
Enabled: false
|
21
|
-
|
22
|
-
# Offence count: 2
|
23
|
-
FavorSprintf:
|
24
|
-
Enabled: false
|
25
|
-
|
26
|
-
# Offence count: 8
|
27
|
-
FavorUnlessOverNegatedIf:
|
28
|
-
Enabled: false
|
29
|
-
|
30
|
-
# Offence count: 7
|
31
|
-
IfUnlessModifier:
|
32
|
-
Enabled: false
|
33
|
-
|
34
|
-
# Offence count: 8
|
35
|
-
Not:
|
36
|
-
Enabled: false
|
37
|
-
|
38
|
-
# Offence count: 1
|
39
|
-
# Cop supports --auto-correct.
|
40
|
-
Proc:
|
41
|
-
Enabled: false
|
42
|
-
|
43
|
-
# Offence count: 3
|
44
|
-
RedundantBegin:
|
45
|
-
Enabled: false
|
46
|
-
|
47
|
-
# Offence count: 67
|
48
|
-
# Cop supports --auto-correct.
|
49
|
-
# NOTE: I want to understand this one better before auto it -mroth
|
50
|
-
RedundantSelf:
|
51
|
-
Enabled: false
|
52
|
-
|
53
|
-
# Offence count: 1
|
54
|
-
# NOTE: Eh, I don't like this one, I think they are more readable? -mroth
|
55
|
-
OneLineConditional:
|
56
|
-
Enabled: false
|
57
|
-
|
58
|
-
# Offence count: 2
|
59
|
-
UselessAssignment:
|
60
|
-
Enabled: false
|
61
|
-
|
62
|
-
# Offence count: 23
|
63
|
-
Documentation:
|
64
|
-
Enabled: false
|
65
|
-
|
66
|
-
# Offence count: 3
|
67
|
-
# Configuration parameters: CountComments.
|
68
|
-
ClassLength:
|
69
|
-
Max: 190
|
70
|
-
|
71
|
-
# Offence count: 73
|
72
|
-
LineLength:
|
73
|
-
Max: 179
|
74
|
-
|
75
|
-
# Offence count: 19
|
76
|
-
# Configuration parameters: CountComments.
|
77
|
-
MethodLength:
|
78
|
-
Max: 32
|
79
|
-
|
80
|
-
# Offence count: 2
|
81
|
-
# Cop supports --auto-correct.
|
82
|
-
WordArray:
|
83
|
-
MinSize: 3
|
84
|
-
|
85
|
-
# Offence count: 1
|
86
|
-
RegexpLiteral:
|
87
|
-
MaxSlashes: 2
|
88
|
-
|
89
|
-
# Offence count: 3
|
90
|
-
CyclomaticComplexity:
|
91
|
-
Max: 10
|
92
|
-
|
93
|
-
# Offence count: 2
|
94
|
-
# Cop supports --auto-correct.
|
95
|
-
# Configuration parameters: AllowMultipleReturnValues.
|
96
|
-
# RedundantReturn:
|
97
|
-
# Enabled: true
|
98
|
-
|
99
|
-
# Offence count: 1
|
100
|
-
# AccessorMethodName:
|
101
|
-
# Enabled: true
|
102
|
-
|
103
|
-
# Offence count: 2
|
104
|
-
# Cop supports --auto-correct.
|
105
|
-
# AlignArray:
|
106
|
-
# Enabled: true
|
107
|
-
|
108
|
-
# Offence count: 7
|
109
|
-
# Cop supports --auto-correct.
|
110
|
-
# AlignParameters:
|
111
|
-
# Enabled: true
|
112
|
-
|
113
|
-
# Offence count: 3
|
114
|
-
# Configuration parameters: AllowSafeAssignment.
|
115
|
-
# AssignmentInCondition:
|
116
|
-
# Enabled: true
|
117
|
-
|
118
|
-
# Offence count: 2
|
119
|
-
# Cop supports --auto-correct.
|
120
|
-
# Blocks:
|
121
|
-
# Enabled: true
|
122
|
-
|
123
|
-
# Offence count: 1
|
124
|
-
# Cop supports --auto-correct.
|
125
|
-
# Configuration parameters: PreferredMethods.
|
126
|
-
# CollectionMethods:
|
127
|
-
# Enabled: true
|
128
|
-
|
129
|
-
# Offence count: 1
|
130
|
-
# Cop supports --auto-correct.
|
131
|
-
# ColonMethodCall:
|
132
|
-
# Enabled: true
|
133
|
-
|
134
|
-
# Offence count: 1
|
135
|
-
# Cop supports --auto-correct.
|
136
|
-
# EmptyLines:
|
137
|
-
# Enabled: true
|
138
|
-
|
139
|
-
# Offence count: 3
|
140
|
-
# EmptyLinesAroundAccessModifier:
|
141
|
-
# Enabled: true
|
142
|
-
|
143
|
-
# Offence count: 19
|
144
|
-
# Cop supports --auto-correct.
|
145
|
-
# EmptyLinesAroundBody:
|
146
|
-
# Enabled: true
|
147
|
-
|
148
|
-
# Offence count: 4
|
149
|
-
# Cop supports --auto-correct.
|
150
|
-
# EmptyLiteral:
|
151
|
-
# Enabled: true
|
152
|
-
|
153
|
-
# Offence count: 2
|
154
|
-
# IndentationWidth:
|
155
|
-
# Enabled: true
|
156
|
-
|
157
|
-
# Offence count: 8
|
158
|
-
# Cop supports --auto-correct.
|
159
|
-
# LeadingCommentSpace:
|
160
|
-
# Enabled: true
|
161
|
-
|
162
|
-
# Offence count: 7
|
163
|
-
# Cop supports --auto-correct.
|
164
|
-
# MethodCallParentheses:
|
165
|
-
# Enabled: true
|
166
|
-
|
167
|
-
# Offence count: 1
|
168
|
-
# Cop supports --auto-correct.
|
169
|
-
# Configuration parameters: AllowSafeAssignment.
|
170
|
-
# ParenthesesAroundCondition:
|
171
|
-
# Enabled: true
|
172
|
-
|
173
|
-
# Offence count: 13
|
174
|
-
# Configuration parameters: NamePrefixBlacklist.
|
175
|
-
# PredicateName:
|
176
|
-
# Enabled: true
|
177
|
-
|
178
|
-
# Offence count: 1
|
179
|
-
# Cop supports --auto-correct.
|
180
|
-
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
181
|
-
# SignalException:
|
182
|
-
# Enabled: true
|
183
|
-
|
184
|
-
# Offence count: 7
|
185
|
-
# Cop supports --auto-correct.
|
186
|
-
# SpaceAfterComma:
|
187
|
-
# Enabled: true
|
188
|
-
|
189
|
-
# Offence count: 1
|
190
|
-
# Cop supports --auto-correct.
|
191
|
-
# SpaceAfterControlKeyword:
|
192
|
-
# Enabled: true
|
193
|
-
|
194
|
-
# Offence count: 1
|
195
|
-
# Cop supports --auto-correct.
|
196
|
-
# SpaceAfterNot:
|
197
|
-
# Enabled: true
|
198
|
-
|
199
|
-
# Offence count: 4
|
200
|
-
# Cop supports --auto-correct.
|
201
|
-
# Configuration parameters: EnforcedStyle, SupportedStyles, EnforcedStyleForEmptyBraces, SpaceBeforeBlockParameters.
|
202
|
-
# SpaceAroundBlockBraces:
|
203
|
-
# Enabled: true
|
204
|
-
|
205
|
-
# Offence count: 2
|
206
|
-
# Cop supports --auto-correct.
|
207
|
-
# SpaceAroundEqualsInParameterDefault:
|
208
|
-
# Enabled: true
|
209
|
-
|
210
|
-
# Offence count: 4
|
211
|
-
# Cop supports --auto-correct.
|
212
|
-
# SpaceAroundOperators:
|
213
|
-
# Enabled: true
|
214
|
-
|
215
|
-
# Offence count: 1
|
216
|
-
# Cop supports --auto-correct.
|
217
|
-
# SpaceInsideBrackets:
|
218
|
-
# Enabled: true
|
219
|
-
|
220
|
-
# Offence count: 5
|
221
|
-
# Cop supports --auto-correct.
|
222
|
-
# SpaceInsideParens:
|
223
|
-
# Enabled: true
|
224
|
-
|
225
|
-
# Offence count: 1
|
226
|
-
# Cop supports --auto-correct.
|
227
|
-
# SpecialGlobalVars:
|
228
|
-
# Enabled: true
|
229
|
-
|
230
|
-
# Offence count: 178
|
231
|
-
# Cop supports --auto-correct.
|
232
|
-
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
233
|
-
# StringLiterals:
|
234
|
-
# Enabled: true
|
235
|
-
|
236
|
-
# Offence count: 1
|
237
|
-
# Cop supports --auto-correct.
|
238
|
-
# TrailingBlankLines:
|
239
|
-
# Enabled: true
|
240
|
-
|
241
|
-
# Offence count: 1
|
242
|
-
# Configuration parameters: EnforcedStyleForMultiline, SupportedStyles.
|
243
|
-
# TrailingComma:
|
244
|
-
# Enabled: true
|
245
|
-
|
246
|
-
# Offence count: 1
|
247
|
-
# Cop supports --auto-correct.
|
248
|
-
# TrailingWhitespace:
|
249
|
-
# Enabled: true
|