- 17 Nov, 2020 1 commit
-
-
intrigeri authored
-
- 23 Apr, 2020 1 commit
-
-
intrigeri authored
Initially done via --auto-correct, then manually linted the resulting code (that would otherwise introduce a bunch of offenses).
-
- 22 Apr, 2020 4 commits
- 21 Apr, 2020 3 commits
-
-
intrigeri authored
Changes generated with: `rubocop --only Style/SpecialGlobalVars --auto-correct`
-
intrigeri authored
Changes generated with: `rubocop --only Style/TrailingCommaInArrayLiteral --auto-correct`
-
intrigeri authored
Changes generated with: `rubocop --only Layout/EmptyLinesAroundModuleBody --auto-correct`
-
- 14 Apr, 2020 1 commit
-
-
anonym authored
-
- 09 Apr, 2020 1 commit
-
-
anonym authored
IO#close() seems entirely wrong here, and very likely is the cause for our defunct subprocesses; I thought IO#close() did an implicit Process.wait(), but it seems to actually just flush buffers and forcefully close immediately, even if the process has not exited yet. If this commit fixes our issues I'll do a pass through our other uses of IO#close() for subprocesses and fix them too. Will-fix: #17551
-
- 08 Apr, 2020 1 commit
-
-
anonym authored
-
- 25 Mar, 2020 1 commit
-
-
anonym authored
If these methods are called from within a try_for() block and the timeout occurs when running the IO.popen() call, but before the p.close(), then we get a lingering defunct process. So let's ensure the processes are cleaned up even in that case. Will-fix: #17551
-
- 23 Jan, 2020 1 commit
-
-
anonym authored
It's easier to debug/test this way.
-
- 16 Jan, 2020 2 commits
-
-
anonym authored
This will be useful for a image bumping mode I'm about to add where the user is shown what a candidate image matches on the screen, so the user can verify that it's correct.
-
anonym authored
I am about to implement a feature where the last match can be used to "bump" the image after allowing more fuzziness.
-
- 15 Jan, 2020 1 commit
-
-
anonym authored
Basically it is a wrapper around OpenCV's matchTemplate() which can be used for image matching, just like Sikuli's find() etc. Since Ruby doesn't have any (working) OpenCV bindings we resort to calling a Python script. Currently it's not used, but stay tuned! Refs: #15460
-