screen-recorder 1.3.0 → 1.6.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 +4 -4
- data/.github/ISSUE_TEMPLATE.md +1 -0
- data/.github/workflows/tests.yml +97 -0
- data/.gitignore +99 -99
- data/.rspec +3 -3
- data/.rubocop.yml +41 -7
- data/CHANGELOG.md +20 -1
- data/LICENSE.txt +21 -21
- data/README.md +79 -18
- data/bin/console +0 -0
- data/bin/setup +8 -8
- data/lib/screen-recorder.rb +32 -4
- data/lib/screen-recorder/common.rb +82 -39
- data/lib/screen-recorder/desktop.rb +5 -3
- data/lib/screen-recorder/errors.rb +17 -9
- data/lib/screen-recorder/options.rb +18 -17
- data/lib/screen-recorder/screenshot.rb +39 -0
- data/lib/screen-recorder/version.rb +1 -1
- data/lib/screen-recorder/window.rb +5 -1
- data/screen-recorder.gemspec +13 -13
- metadata +28 -26
- data/.travis.yml +0 -42
- data/appveyor.yml +0 -39
- data/support/install_jruby.ps1 +0 -7
- data/support/start_test_reporter.sh +0 -7
- data/support/start_xvfb.sh +0 -5
- data/support/stop_test_reporter.sh +0 -5
data/support/install_jruby.ps1
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
$downloadLink = "https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.7.0/jruby-dist-9.2.7.0-bin.zip"
|
2
|
-
$zipPath = "c:\jruby-dist-9.2.7.0-bin.zip"
|
3
|
-
|
4
|
-
Write-Host "Installing $($env:RUBY_VERSION)" -ForegroundColor cyan
|
5
|
-
appveyor DownloadFile "$($downloadLink)" -FileName "$($zipPath)"
|
6
|
-
7z x "$($zipPath)" -oc:\ -y # Unzip to c:\
|
7
|
-
Write-Host "JRuby installed.`n" -ForegroundColor green
|
@@ -1,7 +0,0 @@
|
|
1
|
-
#!/usr/bin/env bash
|
2
|
-
if [[ "$REPORT_COVERAGE" == "true" ]] && [[ "$TRAVIS_BRANCH" == "master" ]]; then
|
3
|
-
echo "Reporting test coverage for 'master' branch."
|
4
|
-
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter;
|
5
|
-
chmod +x ./cc-test-reporter;
|
6
|
-
./cc-test-reporter before-build;
|
7
|
-
fi
|
data/support/start_xvfb.sh
DELETED