lolcommits 0.16.0 → 0.16.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop_todo.yml +61 -33
- data/.travis.yml +3 -4
- data/CHANGELOG.md +8 -1
- data/lib/lolcommits/version.rb +1 -1
- data/lolcommits.gemspec +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7689becdaf2c33ba64b6cd5182a75b566cd9c19dfbffd32663e401dfc8154264
|
4
|
+
data.tar.gz: efc34e0bb9f98fdc5c49439fbcac3f404813765cab07a22873b9c713d54ebf8c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4bd73633800b545ecae9b5480193dbf820b976db2f1907cad3d95d5ac178322b398504d80cfc255618e5af7f6a30e97a0c419aebbd82937d34240029753f2ef6
|
7
|
+
data.tar.gz: 56df5ae5abaa8b272227da9ddc9a7d635bcabc2e74ab64b07b0d0ba658e1b5edf79eb49aa2c9ff0d9c2fa49f3b602581f9738b35213a38ee60ff8c9a57103678
|
data/.rubocop_todo.yml
CHANGED
@@ -1,52 +1,68 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on
|
3
|
+
# on 2020-01-20 22:28:11 +0000 using RuboCop version 0.79.0.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
8
8
|
|
9
|
-
# Offense count:
|
9
|
+
# Offense count: 6
|
10
10
|
# Cop supports --auto-correct.
|
11
|
-
# Configuration parameters:
|
11
|
+
# Configuration parameters: TreatCommentsAsGroupSeparators, Include.
|
12
12
|
# Include: **/*.gemspec
|
13
13
|
Gemspec/OrderedDependencies:
|
14
14
|
Exclude:
|
15
15
|
- 'lolcommits.gemspec'
|
16
16
|
|
17
|
+
# Offense count: 19
|
18
|
+
# Cop supports --auto-correct.
|
19
|
+
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
20
|
+
# SupportedStyles: with_first_argument, with_fixed_indentation
|
21
|
+
Layout/ArgumentAlignment:
|
22
|
+
Enabled: false
|
23
|
+
|
24
|
+
# Offense count: 6
|
25
|
+
# Cop supports --auto-correct.
|
26
|
+
Layout/EmptyLineAfterGuardClause:
|
27
|
+
Exclude:
|
28
|
+
- 'bin/bundle'
|
29
|
+
|
17
30
|
# Offense count: 1
|
18
31
|
# Cop supports --auto-correct.
|
19
32
|
# Configuration parameters: EnforcedStyle.
|
20
|
-
# SupportedStyles:
|
21
|
-
Layout/
|
33
|
+
# SupportedStyles: squiggly, active_support, powerpack, unindent
|
34
|
+
Layout/HeredocIndentation:
|
22
35
|
Exclude:
|
23
36
|
- 'lib/lolcommits/backends/installation_git.rb'
|
24
37
|
|
38
|
+
# Offense count: 1
|
39
|
+
# Cop supports --auto-correct.
|
40
|
+
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
41
|
+
# SupportedStyles: aligned, indented
|
42
|
+
Layout/MultilineOperationIndentation:
|
43
|
+
Exclude:
|
44
|
+
- 'bin/bundle'
|
45
|
+
|
25
46
|
# Offense count: 1
|
26
47
|
Lint/AmbiguousBlockAssociation:
|
27
48
|
Exclude:
|
28
49
|
- 'lib/lolcommits/cli/process_runner.rb'
|
29
50
|
|
30
|
-
# Offense count:
|
51
|
+
# Offense count: 18
|
31
52
|
Metrics/AbcSize:
|
32
|
-
Max:
|
33
|
-
|
34
|
-
# Offense count: 1
|
35
|
-
# Configuration parameters: CountComments, ExcludedMethods.
|
36
|
-
Metrics/BlockLength:
|
37
|
-
Max: 40
|
53
|
+
Max: 29
|
38
54
|
|
39
55
|
# Offense count: 2
|
40
56
|
# Configuration parameters: CountComments.
|
41
57
|
Metrics/ClassLength:
|
42
|
-
Max:
|
58
|
+
Max: 144
|
43
59
|
|
44
60
|
# Offense count: 5
|
45
61
|
Metrics/CyclomaticComplexity:
|
46
|
-
Max:
|
62
|
+
Max: 9
|
47
63
|
|
48
|
-
# Offense count:
|
49
|
-
# Configuration parameters: CountComments.
|
64
|
+
# Offense count: 21
|
65
|
+
# Configuration parameters: CountComments, ExcludedMethods.
|
50
66
|
Metrics/MethodLength:
|
51
67
|
Max: 24
|
52
68
|
|
@@ -54,23 +70,20 @@ Metrics/MethodLength:
|
|
54
70
|
Metrics/PerceivedComplexity:
|
55
71
|
Max: 10
|
56
72
|
|
57
|
-
# Offense count: 1
|
58
|
-
# Cop supports --auto-correct.
|
59
|
-
Security/YAMLLoad:
|
60
|
-
Exclude:
|
61
|
-
- 'lib/lolcommits/configuration.rb'
|
62
|
-
|
63
73
|
# Offense count: 25
|
64
74
|
Style/Documentation:
|
65
75
|
Enabled: false
|
66
76
|
|
67
|
-
# Offense count:
|
77
|
+
# Offense count: 20
|
78
|
+
# Cop supports --auto-correct.
|
79
|
+
Style/ExpandPathArguments:
|
80
|
+
Enabled: false
|
81
|
+
|
82
|
+
# Offense count: 2
|
68
83
|
Style/MixinUsage:
|
69
84
|
Exclude:
|
70
85
|
- 'Rakefile'
|
71
|
-
- 'bin/lolcommits'
|
72
86
|
- 'features/support/env.rb'
|
73
|
-
- 'test/lolcommits_test.rb'
|
74
87
|
|
75
88
|
# Offense count: 5
|
76
89
|
# Cop supports --auto-correct.
|
@@ -85,13 +98,28 @@ Style/PercentLiteralDelimiters:
|
|
85
98
|
|
86
99
|
# Offense count: 1
|
87
100
|
# Cop supports --auto-correct.
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
101
|
+
Style/PerlBackrefs:
|
102
|
+
Exclude:
|
103
|
+
- 'bin/bundle'
|
104
|
+
|
105
|
+
# Offense count: 1
|
106
|
+
# Cop supports --auto-correct.
|
107
|
+
# Configuration parameters: EnforcedStyle.
|
108
|
+
# SupportedStyles: use_perl_names, use_english_names
|
109
|
+
Style/SpecialGlobalVars:
|
110
|
+
Exclude:
|
111
|
+
- 'bin/bundle'
|
92
112
|
|
93
|
-
# Offense count:
|
94
|
-
#
|
113
|
+
# Offense count: 166
|
114
|
+
# Cop supports --auto-correct.
|
115
|
+
# Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline.
|
116
|
+
# SupportedStyles: single_quotes, double_quotes
|
117
|
+
Style/StringLiterals:
|
118
|
+
Enabled: false
|
119
|
+
|
120
|
+
# Offense count: 120
|
121
|
+
# Cop supports --auto-correct.
|
122
|
+
# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
95
123
|
# URISchemes: http, https
|
96
|
-
|
97
|
-
Max:
|
124
|
+
Layout/LineLength:
|
125
|
+
Max: 198
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,10 @@ This project adheres to [Semantic Versioning][Semver].
|
|
7
7
|
|
8
8
|
* Your contribution here!
|
9
9
|
|
10
|
+
## [0.16.1][] (21 Jan 2020)
|
11
|
+
* Upgrade mini_magick to version 4.10.1 (@depfu [#399][])
|
12
|
+
* Fix rubocop config (@Salzig [#400][])
|
13
|
+
|
10
14
|
## [0.16.0][] (21 Oct 2019)
|
11
15
|
* update macOS binaries for Catalina support (@matthutchinson, @samwize [#398][])
|
12
16
|
|
@@ -369,7 +373,8 @@ This project adheres to [Semantic Versioning][Semver].
|
|
369
373
|
reliable to not glitch.)
|
370
374
|
|
371
375
|
[Semver]: http://semver.org
|
372
|
-
[Unreleased]: https://github.com/lolcommits/lolcommits/compare/v0.16.
|
376
|
+
[Unreleased]: https://github.com/lolcommits/lolcommits/compare/v0.16.1...HEAD
|
377
|
+
[0.16.1]: https://github.com/lolcommits/lolcommits/compare/v0.16.0...v0.16.1
|
373
378
|
[0.16.0]: https://github.com/lolcommits/lolcommits/compare/v0.15.1...v0.16.0
|
374
379
|
[0.15.1]: https://github.com/lolcommits/lolcommits/compare/v0.15.0...v0.15.1
|
375
380
|
[0.15.0]: https://github.com/lolcommits/lolcommits/compare/v0.14.1...v0.15.0
|
@@ -574,3 +579,5 @@ This project adheres to [Semantic Versioning][Semver].
|
|
574
579
|
[#392]: https://github.com/lolcommits/lolcommits/pull/392
|
575
580
|
[#394]: https://github.com/lolcommits/lolcommits/pull/394
|
576
581
|
[#398]: https://github.com/lolcommits/lolcommits/pull/398
|
582
|
+
[#399]: https://github.com/lolcommits/lolcommits/pull/399
|
583
|
+
[#400]: https://github.com/lolcommits/lolcommits/pull/400
|
data/lib/lolcommits/version.rb
CHANGED
data/lolcommits.gemspec
CHANGED
@@ -33,14 +33,14 @@ Gem::Specification.new do |s|
|
|
33
33
|
s.require_paths = ['lib']
|
34
34
|
|
35
35
|
# non-gem dependencies
|
36
|
-
s.required_ruby_version = '>= 2.
|
36
|
+
s.required_ruby_version = '>= 2.4'
|
37
37
|
s.requirements << 'imagemagick'
|
38
38
|
s.requirements << 'a webcam'
|
39
39
|
|
40
40
|
# core
|
41
41
|
s.add_runtime_dependency('methadone', '~> 1.9.5')
|
42
42
|
s.add_runtime_dependency('mercurial-ruby', '~> 0.7.12')
|
43
|
-
s.add_runtime_dependency('mini_magick', '~> 4.
|
43
|
+
s.add_runtime_dependency('mini_magick', '~> 4.10.1')
|
44
44
|
s.add_runtime_dependency('launchy', '~> 2.4.3')
|
45
45
|
s.add_runtime_dependency('open4', '~> 1.3.4')
|
46
46
|
s.add_runtime_dependency('git', '~> 1.5.0')
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lolcommits
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.16.
|
4
|
+
version: 0.16.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthew Rothenberg
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2020-01-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: methadone
|
@@ -45,14 +45,14 @@ dependencies:
|
|
45
45
|
requirements:
|
46
46
|
- - "~>"
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: 4.
|
48
|
+
version: 4.10.1
|
49
49
|
type: :runtime
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
53
|
- - "~>"
|
54
54
|
- !ruby/object:Gem::Version
|
55
|
-
version: 4.
|
55
|
+
version: 4.10.1
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
57
|
name: launchy
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
@@ -320,7 +320,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
320
320
|
requirements:
|
321
321
|
- - ">="
|
322
322
|
- !ruby/object:Gem::Version
|
323
|
-
version: '2.
|
323
|
+
version: '2.4'
|
324
324
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
325
325
|
requirements:
|
326
326
|
- - ">="
|