ramble 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
+ SHA1:
3
+ metadata.gz: 1c72f6ed32b84d676a50403f37d626dd20cb31a6
4
+ data.tar.gz: 671f2fc57d4db54104f5c369c0f0412cc15b5acd
5
+ SHA512:
6
+ metadata.gz: 091614c873e7f9e3034a86e92ea7a22840cc426a2ecf09875ac52f9982605d82357a500ea26d1871fc87dcbe42e7e9ce486fbf46e675200fe53b833abc8711e4
7
+ data.tar.gz: 45d90bc1f049edf31d1b1afd5db5f9f22d737a2ae5acbcfcff342761cdcf647741c72165c1ad49ac8f95671027ed13cc4bbd11ef43efad26b0ec94fe855978b8
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.rubocop.yml ADDED
@@ -0,0 +1,622 @@
1
+ AllCops:
2
+ Exclude:
3
+ - db/schema.rb
4
+ - bin/**/*
5
+
6
+ Style/AccessorMethodName:
7
+ Description: Check the naming of accessor methods for get_/set_.
8
+ Enabled: false
9
+
10
+ Style/Alias:
11
+ Description: 'Use alias_method instead of alias.'
12
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#alias-method'
13
+ Enabled: false
14
+
15
+ Style/ArrayJoin:
16
+ Description: 'Use Array#join instead of Array#*.'
17
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#array-join'
18
+ Enabled: false
19
+
20
+ Style/AsciiComments:
21
+ Description: 'Use only ascii symbols in comments.'
22
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#english-comments'
23
+ Enabled: false
24
+
25
+ Style/AsciiIdentifiers:
26
+ Description: 'Use only ascii symbols in identifiers.'
27
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#english-identifiers'
28
+ Enabled: false
29
+
30
+ Style/Attr:
31
+ Description: 'Checks for uses of Module#attr.'
32
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#attr'
33
+ Enabled: false
34
+
35
+ Metrics/BlockNesting:
36
+ Description: 'Avoid excessive block nesting'
37
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#three-is-the-number-thou-shalt-count'
38
+ Enabled: false
39
+
40
+ Style/CaseEquality:
41
+ Description: 'Avoid explicit use of the case equality operator(===).'
42
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-case-equality'
43
+ Enabled: false
44
+
45
+ Style/CharacterLiteral:
46
+ Description: 'Checks for uses of character literals.'
47
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-character-literals'
48
+ Enabled: false
49
+
50
+ Style/ClassAndModuleChildren:
51
+ Description: 'Checks style of children classes and modules.'
52
+ Enabled: true
53
+ EnforcedStyle: nested
54
+
55
+ Metrics/ClassLength:
56
+ Description: 'Avoid classes longer than 100 lines of code.'
57
+ Enabled: false
58
+
59
+ Metrics/ModuleLength:
60
+ Description: 'Avoid modules longer than 100 lines of code.'
61
+ Enabled: false
62
+
63
+ Style/ClassVars:
64
+ Description: 'Avoid the use of class variables.'
65
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-class-vars'
66
+ Enabled: false
67
+
68
+ Style/CollectionMethods:
69
+ Enabled: true
70
+ PreferredMethods:
71
+ find: detect
72
+ inject: reduce
73
+ collect: map
74
+ find_all: select
75
+
76
+ Style/ColonMethodCall:
77
+ Description: 'Do not use :: for method call.'
78
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#double-colons'
79
+ Enabled: false
80
+
81
+ Style/CommentAnnotation:
82
+ Description: >-
83
+ Checks formatting of special comments
84
+ (TODO, FIXME, OPTIMIZE, HACK, REVIEW).
85
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#annotate-keywords'
86
+ Enabled: false
87
+
88
+ Metrics/AbcSize:
89
+ Description: >-
90
+ A calculated magnitude based on number of assignments,
91
+ branches, and conditions.
92
+ Enabled: false
93
+
94
+ Metrics/CyclomaticComplexity:
95
+ Description: >-
96
+ A complexity metric that is strongly correlated to the number
97
+ of test cases needed to validate a method.
98
+ Enabled: false
99
+
100
+ Rails/Delegate:
101
+ Description: 'Prefer delegate method for delegations.'
102
+ Enabled: false
103
+
104
+ Style/Documentation:
105
+ Description: 'Document classes and non-namespace modules.'
106
+ Enabled: false
107
+
108
+ Style/DotPosition:
109
+ Description: 'Checks the position of the dot in multi-line method calls.'
110
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#consistent-multi-line-chains'
111
+ EnforcedStyle: trailing
112
+
113
+ Style/DoubleNegation:
114
+ Description: 'Checks for uses of double negation (!!).'
115
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-bang-bang'
116
+ Enabled: false
117
+
118
+ Style/EachWithObject:
119
+ Description: 'Prefer `each_with_object` over `inject` or `reduce`.'
120
+ Enabled: false
121
+
122
+ Style/EmptyLiteral:
123
+ Description: 'Prefer literals to Array.new/Hash.new/String.new.'
124
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#literal-array-hash'
125
+ Enabled: false
126
+
127
+ # Checks whether the source file has a utf-8 encoding comment or not
128
+ # AutoCorrectEncodingComment must match the regex
129
+ # /#.*coding\s?[:=]\s?(?:UTF|utf)-8/
130
+ Style/Encoding:
131
+ Enabled: false
132
+
133
+ Style/EvenOdd:
134
+ Description: 'Favor the use of Fixnum#even? && Fixnum#odd?'
135
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#predicate-methods'
136
+ Enabled: false
137
+
138
+ Style/ExtraSpacing:
139
+ Description: 'Do not use unnecessary spacing.'
140
+ Enabled: true
141
+
142
+ Style/FileName:
143
+ Description: 'Use snake_case for source file names.'
144
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#snake-case-files'
145
+ Enabled: false
146
+
147
+ Style/FlipFlop:
148
+ Description: 'Checks for flip flops'
149
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-flip-flops'
150
+ Enabled: false
151
+
152
+ Style/FormatString:
153
+ Description: 'Enforce the use of Kernel#sprintf, Kernel#format or String#%.'
154
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#sprintf'
155
+ Enabled: false
156
+
157
+ Style/GlobalVars:
158
+ Description: 'Do not introduce global variables.'
159
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#instance-vars'
160
+ Reference: 'http://www.zenspider.com/Languages/Ruby/QuickRef.html'
161
+ Enabled: false
162
+
163
+ Style/GuardClause:
164
+ Description: 'Check for conditionals that can be replaced with guard clauses'
165
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-nested-conditionals'
166
+ Enabled: false
167
+
168
+ Style/IfUnlessModifier:
169
+ Description: >-
170
+ Favor modifier if/unless usage when you have a
171
+ single-line body.
172
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#if-as-a-modifier'
173
+ Enabled: false
174
+
175
+ Style/IfWithSemicolon:
176
+ Description: 'Do not use if x; .... Use the ternary operator instead.'
177
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-semicolon-ifs'
178
+ Enabled: false
179
+
180
+ Style/InlineComment:
181
+ Description: 'Avoid inline comments.'
182
+ Enabled: false
183
+
184
+ Style/Lambda:
185
+ Description: 'Use the new lambda literal syntax for single-line blocks.'
186
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#lambda-multi-line'
187
+ Enabled: false
188
+
189
+ Style/LambdaCall:
190
+ Description: 'Use lambda.call(...) instead of lambda.(...).'
191
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#proc-call'
192
+ Enabled: false
193
+
194
+ Style/LineEndConcatenation:
195
+ Description: >-
196
+ Use \ instead of + or << to concatenate two string literals at
197
+ line end.
198
+ Enabled: false
199
+
200
+ Metrics/LineLength:
201
+ Description: 'Limit lines to 80 characters.'
202
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#80-character-limits'
203
+ Max: 80
204
+
205
+ Metrics/MethodLength:
206
+ Description: 'Avoid methods longer than 10 lines of code.'
207
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#short-methods'
208
+ Enabled: false
209
+
210
+ Style/ModuleFunction:
211
+ Description: 'Checks for usage of `extend self` in modules.'
212
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#module-function'
213
+ Enabled: false
214
+
215
+ Style/MultilineOperationIndentation:
216
+ Description: >-
217
+ Checks indentation of binary operations that span more than
218
+ one line.
219
+ Enabled: true
220
+ EnforcedStyle: indented
221
+
222
+ Style/MultilineBlockChain:
223
+ Description: 'Avoid multi-line chains of blocks.'
224
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#single-line-blocks'
225
+ Enabled: false
226
+
227
+ Style/MultilineMethodCallIndentation:
228
+ Description: >-
229
+ Checks indentation of method calls with the dot operator
230
+ that span more than one line.
231
+ Enabled: true
232
+ EnforcedStyle: indented
233
+
234
+ Style/NegatedIf:
235
+ Description: >-
236
+ Favor unless over if for negative conditions
237
+ (or control flow or).
238
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#unless-for-negatives'
239
+ Enabled: false
240
+
241
+ Style/NegatedWhile:
242
+ Description: 'Favor until over while for negative conditions.'
243
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#until-for-negatives'
244
+ Enabled: false
245
+
246
+ Style/Next:
247
+ Description: 'Use `next` to skip iteration instead of a condition at the end.'
248
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-nested-conditionals'
249
+ Enabled: false
250
+
251
+ Style/NilComparison:
252
+ Description: 'Prefer x.nil? to x == nil.'
253
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#predicate-methods'
254
+ Enabled: false
255
+
256
+ Style/Not:
257
+ Description: 'Use ! instead of not.'
258
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#bang-not-not'
259
+ Enabled: false
260
+
261
+ Style/NumericLiterals:
262
+ Description: >-
263
+ Add underscores to large numeric literals to improve their
264
+ readability.
265
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#underscores-in-numerics'
266
+ Enabled: false
267
+
268
+ Style/OneLineConditional:
269
+ Description: >-
270
+ Favor the ternary operator(?:) over
271
+ if/then/else/end constructs.
272
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#ternary-operator'
273
+ Enabled: false
274
+
275
+ Style/OpMethod:
276
+ Description: 'When defining binary operators, name the argument other.'
277
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#other-arg'
278
+ Enabled: false
279
+
280
+ Metrics/ParameterLists:
281
+ Description: 'Avoid parameter lists longer than three or four parameters.'
282
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#too-many-params'
283
+ Enabled: false
284
+
285
+ Style/PercentLiteralDelimiters:
286
+ Description: 'Use `%`-literal delimiters consistently'
287
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-literal-braces'
288
+ Enabled: false
289
+
290
+ Style/PerlBackrefs:
291
+ Description: 'Avoid Perl-style regex back references.'
292
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-perl-regexp-last-matchers'
293
+ Enabled: false
294
+
295
+ Style/PredicateName:
296
+ Description: 'Check the names of predicate methods.'
297
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#bool-methods-qmark'
298
+ NamePrefixBlacklist:
299
+ - is_
300
+ Exclude:
301
+ - spec/**/*
302
+
303
+ Style/Proc:
304
+ Description: 'Use proc instead of Proc.new.'
305
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#proc'
306
+ Enabled: false
307
+
308
+ Style/RaiseArgs:
309
+ Description: 'Checks the arguments passed to raise/fail.'
310
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#exception-class-messages'
311
+ Enabled: false
312
+
313
+ Style/RegexpLiteral:
314
+ Description: 'Use / or %r around regular expressions.'
315
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-r'
316
+ Enabled: false
317
+
318
+ Style/SelfAssignment:
319
+ Description: >-
320
+ Checks for places where self-assignment shorthand should have
321
+ been used.
322
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#self-assignment'
323
+ Enabled: false
324
+
325
+ Style/SingleLineBlockParams:
326
+ Description: 'Enforces the names of some block params.'
327
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#reduce-blocks'
328
+ Enabled: false
329
+
330
+ Style/SingleLineMethods:
331
+ Description: 'Avoid single-line methods.'
332
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-single-line-methods'
333
+ Enabled: false
334
+
335
+ Style/SignalException:
336
+ Description: 'Checks for proper usage of fail and raise.'
337
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#fail-method'
338
+ Enabled: false
339
+
340
+ Style/SpecialGlobalVars:
341
+ Description: 'Avoid Perl-style global variables.'
342
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-cryptic-perlisms'
343
+ Enabled: false
344
+
345
+ Style/StringLiterals:
346
+ Description: 'Checks if uses of quotes match the configured preference.'
347
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#consistent-string-literals'
348
+ EnforcedStyle: double_quotes
349
+ Enabled: true
350
+
351
+ Style/TrailingCommaInArguments:
352
+ Description: 'Checks for trailing comma in argument lists.'
353
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-array-commas'
354
+ EnforcedStyleForMultiline: comma
355
+ SupportedStyles:
356
+ - comma
357
+ - consistent_comma
358
+ - no_comma
359
+ Enabled: true
360
+
361
+ Style/TrailingCommaInLiteral:
362
+ Description: 'Checks for trailing comma in array and hash literals.'
363
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-array-commas'
364
+ EnforcedStyleForMultiline: comma
365
+ SupportedStyles:
366
+ - comma
367
+ - consistent_comma
368
+ - no_comma
369
+ Enabled: true
370
+
371
+ Style/TrivialAccessors:
372
+ Description: 'Prefer attr_* methods to trivial readers/writers.'
373
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#attr_family'
374
+ Enabled: false
375
+
376
+ Style/VariableInterpolation:
377
+ Description: >-
378
+ Don't interpolate global, instance and class variables
379
+ directly in strings.
380
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#curlies-interpolate'
381
+ Enabled: false
382
+
383
+ Style/WhenThen:
384
+ Description: 'Use when x then ... for one-line cases.'
385
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#one-line-cases'
386
+ Enabled: false
387
+
388
+ Style/WhileUntilModifier:
389
+ Description: >-
390
+ Favor modifier while/until usage when you have a
391
+ single-line body.
392
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#while-as-a-modifier'
393
+ Enabled: false
394
+
395
+ Style/WordArray:
396
+ Description: 'Use %w or %W for arrays of words.'
397
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-w'
398
+ Enabled: false
399
+
400
+ # Lint
401
+
402
+ Lint/AmbiguousOperator:
403
+ Description: >-
404
+ Checks for ambiguous operators in the first argument of a
405
+ method invocation without parentheses.
406
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#parens-as-args'
407
+ Enabled: false
408
+
409
+ Lint/AmbiguousRegexpLiteral:
410
+ Description: >-
411
+ Checks for ambiguous regexp literals in the first argument of
412
+ a method invocation without parenthesis.
413
+ Enabled: false
414
+
415
+ Lint/AssignmentInCondition:
416
+ Description: "Don't use assignment in conditions."
417
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#safe-assignment-in-condition'
418
+ Enabled: false
419
+
420
+ Lint/CircularArgumentReference:
421
+ Description: "Don't refer to the keyword argument in the default value."
422
+ Enabled: false
423
+
424
+ Lint/ConditionPosition:
425
+ Description: >-
426
+ Checks for condition placed in a confusing position relative to
427
+ the keyword.
428
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#same-line-condition'
429
+ Enabled: false
430
+
431
+ Lint/DeprecatedClassMethods:
432
+ Description: 'Check for deprecated class method calls.'
433
+ Enabled: false
434
+
435
+ Lint/DuplicatedKey:
436
+ Description: 'Check for duplicate keys in hash literals.'
437
+ Enabled: false
438
+
439
+ Lint/EachWithObjectArgument:
440
+ Description: 'Check for immutable argument given to each_with_object.'
441
+ Enabled: false
442
+
443
+ Lint/ElseLayout:
444
+ Description: 'Check for odd code arrangement in an else block.'
445
+ Enabled: false
446
+
447
+ Lint/FormatParameterMismatch:
448
+ Description: 'The number of parameters to format/sprint must match the fields.'
449
+ Enabled: false
450
+
451
+ Lint/HandleExceptions:
452
+ Description: "Don't suppress exception."
453
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#dont-hide-exceptions'
454
+ Enabled: false
455
+
456
+ Lint/InvalidCharacterLiteral:
457
+ Description: >-
458
+ Checks for invalid character literals with a non-escaped
459
+ whitespace character.
460
+ Enabled: false
461
+
462
+ Style/InitialIndentation:
463
+ Description: >-
464
+ Checks the indentation of the first non-blank non-comment line in a file.
465
+ Enabled: false
466
+
467
+ Lint/LiteralInCondition:
468
+ Description: 'Checks of literals used in conditions.'
469
+ Enabled: false
470
+
471
+ Lint/LiteralInInterpolation:
472
+ Description: 'Checks for literals used in interpolation.'
473
+ Enabled: false
474
+
475
+ Lint/Loop:
476
+ Description: >-
477
+ Use Kernel#loop with break rather than begin/end/until or
478
+ begin/end/while for post-loop tests.
479
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#loop-with-break'
480
+ Enabled: false
481
+
482
+ Lint/NestedMethodDefinition:
483
+ Description: 'Do not use nested method definitions.'
484
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-nested-methods'
485
+ Enabled: false
486
+
487
+ Lint/NonLocalExitFromIterator:
488
+ Description: 'Do not use return in iterator to cause non-local exit.'
489
+ Enabled: false
490
+
491
+ Lint/ParenthesesAsGroupedExpression:
492
+ Description: >-
493
+ Checks for method calls with a space before the opening
494
+ parenthesis.
495
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#parens-no-spaces'
496
+ Enabled: false
497
+
498
+ Lint/RequireParentheses:
499
+ Description: >-
500
+ Use parentheses in the method call to avoid confusion
501
+ about precedence.
502
+ Enabled: false
503
+
504
+ Lint/UnderscorePrefixedVariableName:
505
+ Description: 'Do not use prefix `_` for a variable that is used.'
506
+ Enabled: false
507
+
508
+ Lint/UnneededDisable:
509
+ Description: >-
510
+ Checks for rubocop:disable comments that can be removed.
511
+ Note: this cop is not disabled when disabling all cops.
512
+ It must be explicitly disabled.
513
+ Enabled: false
514
+
515
+ Lint/Void:
516
+ Description: 'Possible use of operator/literal/variable in void context.'
517
+ Enabled: false
518
+
519
+ # Performance
520
+
521
+ Performance/CaseWhenSplat:
522
+ Description: >-
523
+ Place `when` conditions that use splat at the end
524
+ of the list of `when` branches.
525
+ Enabled: false
526
+
527
+ Performance/Count:
528
+ Description: >-
529
+ Use `count` instead of `select...size`, `reject...size`,
530
+ `select...count`, `reject...count`, `select...length`,
531
+ and `reject...length`.
532
+ Enabled: false
533
+
534
+ Performance/Detect:
535
+ Description: >-
536
+ Use `detect` instead of `select.first`, `find_all.first`,
537
+ `select.last`, and `find_all.last`.
538
+ Reference: 'https://github.com/JuanitoFatas/fast-ruby#enumerabledetect-vs-enumerableselectfirst-code'
539
+ Enabled: false
540
+
541
+ Performance/FlatMap:
542
+ Description: >-
543
+ Use `Enumerable#flat_map`
544
+ instead of `Enumerable#map...Array#flatten(1)`
545
+ or `Enumberable#collect..Array#flatten(1)`
546
+ Reference: 'https://github.com/JuanitoFatas/fast-ruby#enumerablemaparrayflatten-vs-enumerableflat_map-code'
547
+ Enabled: false
548
+
549
+ Performance/ReverseEach:
550
+ Description: 'Use `reverse_each` instead of `reverse.each`.'
551
+ Reference: 'https://github.com/JuanitoFatas/fast-ruby#enumerablereverseeach-vs-enumerablereverse_each-code'
552
+ Enabled: false
553
+
554
+ Performance/Sample:
555
+ Description: >-
556
+ Use `sample` instead of `shuffle.first`,
557
+ `shuffle.last`, and `shuffle[Fixnum]`.
558
+ Reference: 'https://github.com/JuanitoFatas/fast-ruby#arrayshufflefirst-vs-arraysample-code'
559
+ Enabled: false
560
+
561
+ Performance/Size:
562
+ Description: >-
563
+ Use `size` instead of `count` for counting
564
+ the number of elements in `Array` and `Hash`.
565
+ Reference: 'https://github.com/JuanitoFatas/fast-ruby#arraycount-vs-arraysize-code'
566
+ Enabled: false
567
+
568
+ Performance/StringReplacement:
569
+ Description: >-
570
+ Use `tr` instead of `gsub` when you are replacing the same
571
+ number of characters. Use `delete` instead of `gsub` when
572
+ you are deleting characters.
573
+ Reference: 'https://github.com/JuanitoFatas/fast-ruby#stringgsub-vs-stringtr-code'
574
+ Enabled: false
575
+
576
+ # Rails
577
+
578
+ Rails/ActionFilter:
579
+ Description: 'Enforces consistent use of action filter methods.'
580
+ Enabled: false
581
+
582
+ Rails/Date:
583
+ Description: >-
584
+ Checks the correct usage of date aware methods,
585
+ such as Date.today, Date.current etc.
586
+ Enabled: false
587
+
588
+ Rails/FindBy:
589
+ Description: 'Prefer find_by over where.first.'
590
+ Enabled: false
591
+
592
+ Rails/FindEach:
593
+ Description: 'Prefer all.find_each over all.find.'
594
+ Enabled: false
595
+
596
+ Rails/HasAndBelongsToMany:
597
+ Description: 'Prefer has_many :through to has_and_belongs_to_many.'
598
+ Enabled: false
599
+
600
+ Rails/Output:
601
+ Description: 'Checks for calls to puts, print, etc.'
602
+ Enabled: false
603
+
604
+ Rails/ReadWriteAttribute:
605
+ Description: >-
606
+ Checks for read_attribute(:attr) and
607
+ write_attribute(:attr, val).
608
+ Enabled: false
609
+
610
+ Rails/ScopeArgs:
611
+ Description: 'Checks the arguments of ActiveRecord scopes.'
612
+ Enabled: false
613
+
614
+ Rails/TimeZone:
615
+ Description: 'Checks the correct usage of time zone aware methods.'
616
+ StyleGuide: 'https://github.com/bbatsov/rails-style-guide#time'
617
+ Reference: 'http://danilenko.org/2012/7/6/rails_timezones'
618
+ Enabled: false
619
+
620
+ Rails/Validation:
621
+ Description: 'Use validates :attribute, hash of validations.'
622
+ Enabled: false
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.1
5
+ before_install: gem install bundler -v 1.12.5
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at alexstophel@gmail.com. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in ramble.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Alex Stophel
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # Ramble
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/ramble`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'ramble'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install ramble
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/ramble. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task default: :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "ramble"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/rspec ADDED
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'rspec' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("rspec-core", "rspec")
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,3 @@
1
+ module Ramble
2
+ VERSION = "0.1.0".freeze
3
+ end
data/lib/ramble.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "ramble/version"
2
+
3
+ module Ramble
4
+ # Your code goes here...
5
+ end
data/ramble.gemspec ADDED
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "ramble/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "ramble"
8
+ spec.version = Ramble::VERSION
9
+ spec.authors = ["Alex Stophel"]
10
+ spec.email = ["alexstophel@gmail.com"]
11
+ spec.summary = "Simple blogging based somewhat off of Jekyll."
12
+ spec.homepage = "https://github.com/alexstophel/ramble"
13
+ spec.license = "MIT"
14
+
15
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
16
+ f.match(%r{^(test|spec|features)/})
17
+ end
18
+
19
+ spec.bindir = "exe"
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.12"
24
+ spec.add_development_dependency "rake", "~> 10.0"
25
+ spec.add_development_dependency "rspec", "~> 3.0"
26
+ end
metadata ADDED
@@ -0,0 +1,101 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ramble
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Alex Stophel
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-07-04 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.12'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.12'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description:
56
+ email:
57
+ - alexstophel@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - ".rubocop.yml"
65
+ - ".travis.yml"
66
+ - CODE_OF_CONDUCT.md
67
+ - Gemfile
68
+ - LICENSE.txt
69
+ - README.md
70
+ - Rakefile
71
+ - bin/console
72
+ - bin/rspec
73
+ - bin/setup
74
+ - lib/ramble.rb
75
+ - lib/ramble/version.rb
76
+ - ramble.gemspec
77
+ homepage: https://github.com/alexstophel/ramble
78
+ licenses:
79
+ - MIT
80
+ metadata: {}
81
+ post_install_message:
82
+ rdoc_options: []
83
+ require_paths:
84
+ - lib
85
+ required_ruby_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ required_rubygems_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ requirements: []
96
+ rubyforge_project:
97
+ rubygems_version: 2.5.1
98
+ signing_key:
99
+ specification_version: 4
100
+ summary: Simple blogging based somewhat off of Jekyll.
101
+ test_files: []