lolcommits 0.15.1 → 0.16.0.pre1
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3aee5c9acd38b4fc8411a1034b29a4f1ecb01bd65c535c2b4bc15a444aeab556
|
4
|
+
data.tar.gz: 70075899b1082ada11b611d305f1cb8c3189771da6ecb2d7473af2dbd3ee1957
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4970f51d776c4030db2b99df32c9c297ed7114d6119dcfafdf0a9fbc4a21bfd99e04eeedd286e3d0d79865144edb4fff118fae900832779bd8cd964582de03dd
|
7
|
+
data.tar.gz: 23a41d49edca869fef05911080d1c586f17af6ded3ea2a727953685e9adc05f21a93d763a1aa47130d37cd9d5ff8e36145e8d60ce4beb805ffdd761f53f0e1bd
|
@@ -146,8 +146,8 @@ Given(/^a loldir named "(.*?)" with (\d+) lolimages$/) do |repo, num_images|
|
|
146
146
|
loldir = expand_path("~/.lolcommits/#{repo}")
|
147
147
|
FileUtils.mkdir_p loldir
|
148
148
|
num_images.to_i.times do
|
149
|
-
|
150
|
-
FileUtils.cp 'test/assets/test_image.jpg', File.join(loldir, "#{
|
149
|
+
sha = format('%<hex>x', hex: (rand * 0xfffffffffff))
|
150
|
+
FileUtils.cp 'test/assets/test_image.jpg', File.join(loldir, "#{sha}.jpg")
|
151
151
|
end
|
152
152
|
end
|
153
153
|
|
data/lib/lolcommits/version.rb
CHANGED
Binary file
|
Binary file
|
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.
|
4
|
+
version: 0.16.0.pre1
|
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: 2019-
|
12
|
+
date: 2019-10-20 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: methadone
|
@@ -323,15 +323,24 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
323
323
|
version: '2.3'
|
324
324
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
325
325
|
requirements:
|
326
|
-
- - "
|
326
|
+
- - ">"
|
327
327
|
- !ruby/object:Gem::Version
|
328
|
-
version:
|
328
|
+
version: 1.3.1
|
329
329
|
requirements:
|
330
330
|
- imagemagick
|
331
331
|
- a webcam
|
332
|
-
|
333
|
-
rubygems_version: 2.7.7
|
332
|
+
rubygems_version: 3.0.3
|
334
333
|
signing_key:
|
335
334
|
specification_version: 4
|
336
335
|
summary: Capture webcam image on git commit for lulz.
|
337
|
-
test_files:
|
336
|
+
test_files:
|
337
|
+
- features/bugs.feature
|
338
|
+
- features/lolcommits.feature
|
339
|
+
- features/step_definitions/lolcommits_steps.rb
|
340
|
+
- features/support/env.rb
|
341
|
+
- features/support/path_helpers.rb
|
342
|
+
- test/assets/test_image.jpg
|
343
|
+
- test/assets/test_video.mp4
|
344
|
+
- test/images/test_image.jpg
|
345
|
+
- test/permissions_test.rb
|
346
|
+
- test/test_helper.rb
|