screen-recorder 1.3.0 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
@@ -1,5 +0,0 @@
1
- #!/usr/bin/env bash
2
- if [[ "$RAKE_TASK" == "spec" ]]; then
3
- echo "Starting Xvfb..."
4
- nohup Xvfb $DISPLAY -screen 0 1024x768x24 &
5
- fi
@@ -1,5 +0,0 @@
1
- #!/usr/bin/env bash
2
- if [[ "$REPORT_COVERAGE" == "true" ]] && [[ "$TRAVIS_BRANCH" == "master" ]]; then
3
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT;
4
- echo "Reported test coverage for 'master' branch."
5
- fi