lolcommits 0.16.3 → 0.16.4
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 +37 -65
- data/.travis.yml +4 -4
- data/CHANGELOG.md +8 -3
- data/README.md +1 -2
- data/Rakefile +3 -3
- data/lib/core_ext/mercurial-ruby/shell.rb +1 -1
- data/lib/lolcommits/animated_gif.rb +1 -1
- data/lib/lolcommits/backends/git_info.rb +1 -1
- data/lib/lolcommits/backends/installation_git.rb +1 -1
- data/lib/lolcommits/backends/installation_mercurial.rb +1 -1
- data/lib/lolcommits/cli/fatals.rb +4 -4
- data/lib/lolcommits/cli/process_runner.rb +2 -2
- data/lib/lolcommits/configuration.rb +9 -13
- data/lib/lolcommits/gem_plugin.rb +1 -1
- data/lib/lolcommits/plugin/base.rb +1 -1
- data/lib/lolcommits/plugin_manager.rb +1 -1
- data/lib/lolcommits/version.rb +1 -1
- data/lolcommits.gemspec +2 -2
- metadata +7 -8
- data/config/cucumber.yml +0 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 127f7270f2ceb68501f4f2f158092290638eb45fc7fa9cb354a73bd5f7141016
|
4
|
+
data.tar.gz: 1a059a885d1acbaa0d988365495802ee9bab2bc78e8c95751cee495ee40bdfc2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0be060d8b449e66f875997ec02e5ad745ad75d320087a5d19f27f506829dcac7796c997cf7e14bb021950222a57e416fdf8ad1724c45dbd3bb92f4d788dec045
|
7
|
+
data.tar.gz: fbb14bf9cc8f82662efb190707f254880509484ab9f4e4a2f4f5c09cf47ad6c552358c864347c30a55ea04f77f1a54c2259f49302e70196a4d1d4d587168e32b
|
data/.rubocop_todo.yml
CHANGED
@@ -1,83 +1,68 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on
|
3
|
+
# on 2023-05-14 21:38:57 UTC using RuboCop version 1.50.2.
|
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: 6
|
10
|
-
# Cop supports --auto-correct.
|
11
|
-
# Configuration parameters: TreatCommentsAsGroupSeparators, Include.
|
12
|
-
# Include: **/*.gemspec
|
13
|
-
Gemspec/OrderedDependencies:
|
14
|
-
Exclude:
|
15
|
-
- 'lolcommits.gemspec'
|
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
|
-
|
30
9
|
# Offense count: 1
|
31
|
-
#
|
32
|
-
# Configuration parameters: EnforcedStyle.
|
33
|
-
# SupportedStyles: squiggly, active_support, powerpack, unindent
|
10
|
+
# This cop supports safe autocorrection (--autocorrect).
|
34
11
|
Layout/HeredocIndentation:
|
35
12
|
Exclude:
|
36
13
|
- 'lib/lolcommits/backends/installation_git.rb'
|
37
14
|
|
38
15
|
# Offense count: 1
|
39
|
-
#
|
40
|
-
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
41
|
-
# SupportedStyles: aligned, indented
|
42
|
-
Layout/MultilineOperationIndentation:
|
43
|
-
Exclude:
|
44
|
-
- 'bin/bundle'
|
45
|
-
|
46
|
-
# Offense count: 1
|
16
|
+
# Configuration parameters: AllowedMethods, AllowedPatterns.
|
47
17
|
Lint/AmbiguousBlockAssociation:
|
48
18
|
Exclude:
|
49
19
|
- 'lib/lolcommits/cli/process_runner.rb'
|
50
20
|
|
51
|
-
# Offense count:
|
21
|
+
# Offense count: 15
|
22
|
+
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
|
52
23
|
Metrics/AbcSize:
|
53
|
-
Max:
|
24
|
+
Max: 33
|
54
25
|
|
55
26
|
# Offense count: 2
|
56
|
-
# Configuration parameters: CountComments.
|
27
|
+
# Configuration parameters: CountComments, CountAsOne.
|
57
28
|
Metrics/ClassLength:
|
58
29
|
Max: 144
|
59
30
|
|
60
31
|
# Offense count: 5
|
32
|
+
# Configuration parameters: AllowedMethods, AllowedPatterns.
|
61
33
|
Metrics/CyclomaticComplexity:
|
62
34
|
Max: 10
|
63
35
|
|
64
|
-
# Offense count:
|
65
|
-
# Configuration parameters: CountComments,
|
36
|
+
# Offense count: 20
|
37
|
+
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
|
66
38
|
Metrics/MethodLength:
|
67
39
|
Max: 24
|
68
40
|
|
69
41
|
# Offense count: 5
|
42
|
+
# Configuration parameters: AllowedMethods, AllowedPatterns.
|
70
43
|
Metrics/PerceivedComplexity:
|
71
44
|
Max: 10
|
72
45
|
|
73
|
-
# Offense count:
|
46
|
+
# Offense count: 26
|
47
|
+
# Configuration parameters: AllowedConstants.
|
74
48
|
Style/Documentation:
|
75
49
|
Enabled: false
|
76
50
|
|
77
|
-
# Offense count:
|
78
|
-
#
|
79
|
-
|
80
|
-
|
51
|
+
# Offense count: 6
|
52
|
+
# This cop supports safe autocorrection (--autocorrect).
|
53
|
+
# Configuration parameters: EnforcedStyle, EnforcedShorthandSyntax, UseHashRocketsWithSymbolValues, PreferHashRocketsForNonAlnumEndingSymbols.
|
54
|
+
# SupportedStyles: ruby19, hash_rockets, no_mixed_keys, ruby19_no_mixed_keys
|
55
|
+
# SupportedShorthandSyntax: always, never, either, consistent
|
56
|
+
Style/HashSyntax:
|
57
|
+
Exclude:
|
58
|
+
- 'lib/lolcommits/gem_plugin.rb'
|
59
|
+
- 'lib/lolcommits/runner.rb'
|
60
|
+
|
61
|
+
# Offense count: 1
|
62
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
63
|
+
Style/MapToHash:
|
64
|
+
Exclude:
|
65
|
+
- 'lib/lolcommits/plugin/base.rb'
|
81
66
|
|
82
67
|
# Offense count: 2
|
83
68
|
Style/MixinUsage:
|
@@ -86,7 +71,7 @@ Style/MixinUsage:
|
|
86
71
|
- 'features/support/env.rb'
|
87
72
|
|
88
73
|
# Offense count: 5
|
89
|
-
#
|
74
|
+
# This cop supports safe autocorrection (--autocorrect).
|
90
75
|
# Configuration parameters: PreferredDelimiters.
|
91
76
|
Style/PercentLiteralDelimiters:
|
92
77
|
Exclude:
|
@@ -96,30 +81,17 @@ Style/PercentLiteralDelimiters:
|
|
96
81
|
- 'lib/lolcommits/cli/fatals.rb'
|
97
82
|
- 'lib/lolcommits/installation.rb'
|
98
83
|
|
99
|
-
# Offense count:
|
100
|
-
#
|
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'
|
112
|
-
|
113
|
-
# Offense count: 166
|
114
|
-
# Cop supports --auto-correct.
|
84
|
+
# Offense count: 2
|
85
|
+
# This cop supports safe autocorrection (--autocorrect).
|
115
86
|
# Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline.
|
116
87
|
# SupportedStyles: single_quotes, double_quotes
|
117
88
|
Style/StringLiterals:
|
118
|
-
|
89
|
+
Exclude:
|
90
|
+
- 'lib/lolcommits/version.rb'
|
119
91
|
|
120
|
-
# Offense count:
|
121
|
-
#
|
122
|
-
# Configuration parameters:
|
92
|
+
# Offense count: 16
|
93
|
+
# This cop supports safe autocorrection (--autocorrect).
|
94
|
+
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns.
|
123
95
|
# URISchemes: http, https
|
124
96
|
Layout/LineLength:
|
125
|
-
Max:
|
97
|
+
Max: 192
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -7,10 +7,13 @@ This project adheres to [Semantic Versioning][Semver].
|
|
7
7
|
|
8
8
|
* Your contribution here!
|
9
9
|
|
10
|
+
## [0.16.4][] (05 Sep 2023)
|
11
|
+
* Fixing for Git 1.18+, it no longer sets a `$GIT_DIR` in post-commit hooks [#417][]
|
12
|
+
|
10
13
|
## [0.16.3][] (28 Jan 2021)
|
11
14
|
* Upgrade gem dependencies (for Ruby 3.0 compatibility)
|
12
|
-
* Patched `mercurial-ruby` to work with Ruby 3.0 [#411][]
|
13
|
-
* Fixed up the formatting of generated hooks in `.hg/hgrc` [#411][]
|
15
|
+
* Patched `mercurial-ruby` to work with Ruby 3.0 [#411][]
|
16
|
+
* Fixed up the formatting of generated hooks in `.hg/hgrc` [#411][]
|
14
17
|
* Fix failing RuboCops and update config
|
15
18
|
* Update Travis CI rubies
|
16
19
|
|
@@ -385,7 +388,8 @@ This project adheres to [Semantic Versioning][Semver].
|
|
385
388
|
reliable to not glitch.)
|
386
389
|
|
387
390
|
[Semver]: http://semver.org
|
388
|
-
[Unreleased]: https://github.com/lolcommits/lolcommits/compare/v0.16.
|
391
|
+
[Unreleased]: https://github.com/lolcommits/lolcommits/compare/v0.16.4...HEAD
|
392
|
+
[0.16.4]: https://github.com/lolcommits/lolcommits/compare/v0.16.3...v0.16.4
|
389
393
|
[0.16.3]: https://github.com/lolcommits/lolcommits/compare/v0.16.2...v0.16.3
|
390
394
|
[0.16.2]: https://github.com/lolcommits/lolcommits/compare/v0.16.1...v0.16.2
|
391
395
|
[0.16.1]: https://github.com/lolcommits/lolcommits/compare/v0.16.0...v0.16.1
|
@@ -599,3 +603,4 @@ This project adheres to [Semantic Versioning][Semver].
|
|
599
603
|
[#402]: https://github.com/lolcommits/lolcommits/pull/402
|
600
604
|
[#405]: https://github.com/lolcommits/lolcommits/pull/405
|
601
605
|
[#411]: https://github.com/lolcommits/lolcommits/pull/411
|
606
|
+
[#417]: https://github.com/lolcommits/lolcommits/pull/417
|
data/README.md
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
# lolcommits
|
2
2
|
|
3
3
|
[![Gem](https://img.shields.io/gem/v/lolcommits.svg?style=flat)](http://rubygems.org/gems/lolcommits)
|
4
|
-
[![Travis](https://img.shields.io/travis/com/lolcommits/lolcommits/master.svg?style=flat)](https://travis-ci.com/lolcommits/lolcommits)
|
5
4
|
[![Depfu](https://img.shields.io/depfu/lolcommits/lolcommits.svg?style=flat)](https://depfu.com/github/lolcommits/lolcommits)
|
6
5
|
[![Maintainability](https://api.codeclimate.com/v1/badges/c13fa50206e122e416c2/maintainability)](https://codeclimate.com/github/lolcommits/lolcommits/maintainability)
|
7
6
|
[![Test Coverage](https://api.codeclimate.com/v1/badges/c13fa50206e122e416c2/test_coverage)](https://codeclimate.com/github/lolcommits/lolcommits/test_coverage)
|
@@ -39,7 +38,7 @@ page on our wiki!
|
|
39
38
|
|
40
39
|
## Requirements
|
41
40
|
|
42
|
-
* Ruby >= 2.
|
41
|
+
* Ruby >= 2.3
|
43
42
|
* A webcam
|
44
43
|
* [ImageMagick](http://www.imagemagick.org)
|
45
44
|
* [ffmpeg](https://www.ffmpeg.org) (optional) for animated gif capturing
|
data/Rakefile
CHANGED
@@ -55,9 +55,9 @@ RuboCop::RakeTask.new
|
|
55
55
|
|
56
56
|
desc 'Migrate an existing local .lolcommits directory to Dropbox'
|
57
57
|
task :dropboxify do
|
58
|
-
dropbox_loldir = "#{
|
59
|
-
loldir = "#{
|
60
|
-
backup_loldir = "#{
|
58
|
+
dropbox_loldir = "#{Dir.home}/Dropbox/lolcommits"
|
59
|
+
loldir = "#{Dir.home}/.lolcommits"
|
60
|
+
backup_loldir = "#{Dir.home}/.lolcommits.old"
|
61
61
|
|
62
62
|
# check whether we've done this already
|
63
63
|
abort 'already dropboxified!' if File.symlink? loldir
|
@@ -5,7 +5,7 @@ module Mercurial
|
|
5
5
|
# windows command line doesn't like single quotes
|
6
6
|
def self.interpolate_arguments(cmd_with_args)
|
7
7
|
cmd_with_args.shift.tap do |cmd|
|
8
|
-
cmd.gsub!(
|
8
|
+
cmd.gsub!('?') do
|
9
9
|
if Lolcommits::Platform.platform_windows?
|
10
10
|
"\"#{cmd_with_args.shift}\""
|
11
11
|
else
|
@@ -63,7 +63,7 @@ module Lolcommits
|
|
63
63
|
ruby_path = Lolcommits::Platform.command_which('ruby', only_path: true)
|
64
64
|
imagick_path = Lolcommits::Platform.command_which('identify', only_path: true)
|
65
65
|
capture_cmd = "if [ ! -d \"$GIT_DIR/rebase-merge\" ] && [ \"$LOLCOMMITS_CAPTURE_DISABLED\" != \"true\" ]; then lolcommits --capture #{capture_args}; fi"
|
66
|
-
exports = "LANG=\"#{ENV
|
66
|
+
exports = "GIT_DIR=${GIT_DIR-`git rev-parse --git-dir`} && LANG=\"#{ENV.fetch('LANG', nil)}\" && PATH=\"$PATH:#{ruby_path}:#{imagick_path}\""
|
67
67
|
|
68
68
|
if Lolcommits::Platform.platform_windows?
|
69
69
|
exports = "set path=\"%PATH%;#{ruby_path};#{imagick_path}\""
|
@@ -43,7 +43,7 @@ module Lolcommits
|
|
43
43
|
ruby_path = Lolcommits::Platform.command_which('ruby', only_path: true)
|
44
44
|
imagick_path = Lolcommits::Platform.command_which('identify', only_path: true)
|
45
45
|
capture_cmd = "if [ \"$LOLCOMMITS_CAPTURE_DISABLED\" != \"true\" ]; then lolcommits --capture #{capture_args}; fi"
|
46
|
-
exports = "LANG=\"#{ENV
|
46
|
+
exports = "LANG=\"#{ENV.fetch('LANG', nil)}\" && PATH=\"$PATH:#{ruby_path}:#{imagick_path}\""
|
47
47
|
|
48
48
|
if Lolcommits::Platform.platform_windows?
|
49
49
|
exports = "set path=\"%PATH%;#{ruby_path};#{imagick_path}\""
|
@@ -19,7 +19,7 @@ module Lolcommits
|
|
19
19
|
%w(imagesnap videosnap).each do |executable|
|
20
20
|
next if File.executable? File.join(Configuration::LOLCOMMITS_ROOT, 'vendor', 'ext', executable, executable)
|
21
21
|
|
22
|
-
fatal "Couldn't properly execute #{executable} for some reason, "\
|
22
|
+
fatal "Couldn't properly execute #{executable} for some reason, " \
|
23
23
|
'please file a bug?!'
|
24
24
|
exit 1
|
25
25
|
end
|
@@ -32,7 +32,7 @@ module Lolcommits
|
|
32
32
|
|
33
33
|
# make sure imagemagick is around and good to go
|
34
34
|
unless Platform.valid_imagemagick_installed?
|
35
|
-
fatal 'FATAL: ImageMagick does not appear to be properly installed!'\
|
35
|
+
fatal 'FATAL: ImageMagick does not appear to be properly installed!' \
|
36
36
|
'(or version is too old)'
|
37
37
|
exit 1
|
38
38
|
end
|
@@ -40,8 +40,8 @@ module Lolcommits
|
|
40
40
|
# check for a error condition with git config affecting ruby-git
|
41
41
|
return unless Platform.git_config_color_always?
|
42
42
|
|
43
|
-
fatal 'Due to a bug in the ruby-git library, git config for color.ui'\
|
44
|
-
|
43
|
+
fatal 'Due to a bug in the ruby-git library, git config for color.ui ' \
|
44
|
+
"cannot be set to 'always'."
|
45
45
|
fatal "Try setting it to 'auto' instead!"
|
46
46
|
exit 1
|
47
47
|
end
|
@@ -33,11 +33,11 @@ module Lolcommits
|
|
33
33
|
private
|
34
34
|
|
35
35
|
def write_pid(pid)
|
36
|
-
File.
|
36
|
+
File.write(pid_file, pid)
|
37
37
|
end
|
38
38
|
|
39
39
|
def delete_pid
|
40
|
-
File.
|
40
|
+
File.rm_f(pid_file)
|
41
41
|
end
|
42
42
|
|
43
43
|
def pid_file
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
module Lolcommits
|
4
4
|
class Configuration
|
5
|
-
LOLCOMMITS_BASE = ENV['LOLCOMMITS_DIR'] || File.join(
|
5
|
+
LOLCOMMITS_BASE = ENV['LOLCOMMITS_DIR'] || File.join(Dir.home, '.lolcommits')
|
6
6
|
LOLCOMMITS_ROOT = File.join(File.dirname(__FILE__), '../..')
|
7
7
|
|
8
8
|
attr_accessor :plugin_manager
|
@@ -14,13 +14,11 @@ module Lolcommits
|
|
14
14
|
end
|
15
15
|
|
16
16
|
def yaml
|
17
|
-
@yaml ||=
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
end
|
23
|
-
end
|
17
|
+
@yaml ||= if File.exist?(configuration_file)
|
18
|
+
YAML.safe_load(File.open(configuration_file), permitted_classes: [Symbol]) || Hash.new({})
|
19
|
+
else
|
20
|
+
Hash.new({})
|
21
|
+
end
|
24
22
|
end
|
25
23
|
|
26
24
|
def configuration_file
|
@@ -103,16 +101,14 @@ module Lolcommits
|
|
103
101
|
# print config if plugin was enabled
|
104
102
|
if plugin_config[:enabled]
|
105
103
|
puts "\nSuccessfully configured plugin: #{plugin.name} - at path '#{configuration_file}'"
|
106
|
-
puts plugin_config.to_yaml
|
104
|
+
puts plugin_config.to_yaml
|
107
105
|
end
|
108
106
|
end
|
109
107
|
end
|
110
108
|
|
111
109
|
def save(plugin_name, plugin_config)
|
112
110
|
config_file_contents = yaml.merge(plugin_name => plugin_config).to_yaml
|
113
|
-
File.
|
114
|
-
f.write(config_file_contents)
|
115
|
-
end
|
111
|
+
File.write(configuration_file, config_file_contents)
|
116
112
|
end
|
117
113
|
|
118
114
|
def to_s
|
@@ -130,7 +126,7 @@ module Lolcommits
|
|
130
126
|
File.chmod(0o755, loldir)
|
131
127
|
rescue Errno::EPERM
|
132
128
|
# abort if permissions cannot be met
|
133
|
-
puts "FATAL: directory '#{loldir}' should be present and writeable by user '#{ENV
|
129
|
+
puts "FATAL: directory '#{loldir}' should be present and writeable by user '#{ENV.fetch('USER', nil)}'"
|
134
130
|
puts 'Try changing the directory permissions to 755'
|
135
131
|
exit 1
|
136
132
|
end
|
@@ -15,7 +15,7 @@ module Lolcommits
|
|
15
15
|
require gem_path unless required?
|
16
16
|
rescue LoadError => e
|
17
17
|
warn "Found plugin #{name}, but could not require gem '#{gem_name}'"
|
18
|
-
warn e
|
18
|
+
warn e
|
19
19
|
rescue StandardError => e
|
20
20
|
warn "require gem '#{gem_name}' failed with: #{e}"
|
21
21
|
end
|
@@ -52,7 +52,7 @@ module Lolcommits
|
|
52
52
|
# @return [Hash] the configured plugin options
|
53
53
|
def configure_options!
|
54
54
|
configure_option_hash(
|
55
|
-
|
55
|
+
options.map { |option| [option, nil] }.to_h.merge(default_options)
|
56
56
|
)
|
57
57
|
end
|
58
58
|
|
data/lib/lolcommits/version.rb
CHANGED
data/lolcommits.gemspec
CHANGED
@@ -40,10 +40,10 @@ Gem::Specification.new do |s|
|
|
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.12.0')
|
44
44
|
s.add_runtime_dependency('launchy', '~> 2.5.0')
|
45
45
|
s.add_runtime_dependency('open4', '~> 1.3.4')
|
46
|
-
s.add_runtime_dependency('git', '~> 1.
|
46
|
+
s.add_runtime_dependency('git', '~> 1.18.0')
|
47
47
|
|
48
48
|
# included plugins
|
49
49
|
s.add_runtime_dependency('lolcommits-loltext', '~> 0.4.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.4
|
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: 2023-09-05 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.12.0
|
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.12.0
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
57
|
name: launchy
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
@@ -87,14 +87,14 @@ dependencies:
|
|
87
87
|
requirements:
|
88
88
|
- - "~>"
|
89
89
|
- !ruby/object:Gem::Version
|
90
|
-
version: 1.
|
90
|
+
version: 1.18.0
|
91
91
|
type: :runtime
|
92
92
|
prerelease: false
|
93
93
|
version_requirements: !ruby/object:Gem::Requirement
|
94
94
|
requirements:
|
95
95
|
- - "~>"
|
96
96
|
- !ruby/object:Gem::Version
|
97
|
-
version: 1.
|
97
|
+
version: 1.18.0
|
98
98
|
- !ruby/object:Gem::Dependency
|
99
99
|
name: lolcommits-loltext
|
100
100
|
requirement: !ruby/object:Gem::Requirement
|
@@ -251,7 +251,6 @@ files:
|
|
251
251
|
- appveyor.yml
|
252
252
|
- bin/console
|
253
253
|
- bin/lolcommits
|
254
|
-
- config/cucumber.yml
|
255
254
|
- features/bugs.feature
|
256
255
|
- features/lolcommits.feature
|
257
256
|
- features/step_definitions/lolcommits_steps.rb
|
@@ -330,7 +329,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
330
329
|
requirements:
|
331
330
|
- imagemagick
|
332
331
|
- a webcam
|
333
|
-
rubygems_version: 3.
|
332
|
+
rubygems_version: 3.4.17
|
334
333
|
signing_key:
|
335
334
|
specification_version: 4
|
336
335
|
summary: Capture webcam image on git commit for lulz.
|
data/config/cucumber.yml
DELETED