bruw 0.1.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: eb997d7babdb7f2154d606bd5dc546ce3a24e0eee8790cf32e051d55c91f564f
4
+ data.tar.gz: cdc5b038d6237409b50b7bc9ae93d0ab51450ca517020db7c54cc1d6b358454c
5
+ SHA512:
6
+ metadata.gz: e3d78dd7543841f0f6bc7164cc6023df4d150a87acc7316b7ed2f2407e39b1e283db23f0ff189edd651f81e0b4d4bd8ba54cc69ede5abe08165b19d0e8314459
7
+ data.tar.gz: 188c1cd96d29e7b3bf8b44741428638ac5b9a954c8988e74f1d4d52913d87bb40e393cf21d7761f635d8d5c066f160d64f107373b7be1c6f6ede5737c450144b
@@ -0,0 +1,31 @@
1
+ name: Tests
2
+ on:
3
+ push:
4
+ branches:
5
+ - develop
6
+ - master
7
+ - release/*
8
+ - "*-stable"
9
+
10
+ env:
11
+ CI: "true"
12
+ RUBY_VERSION: 2.7.1
13
+
14
+ jobs:
15
+ tests:
16
+ name: Tests
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: rokroskar/workflow-run-cleanup-action@v0.2.2
20
+ if: "github.ref != 'refs/heads/master' || github.ref != 'refs/heads/develop'"
21
+ env:
22
+ GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
23
+ - uses: actions/checkout@v2.0.0
24
+ with:
25
+ fetch-depth: 1
26
+ - uses: ruby/setup-ruby@v1
27
+ with:
28
+ ruby-version: ${{ env.RUBY_VERSION }}
29
+ bundler-cache: true
30
+ - uses: nanasess/setup-chromedriver@v1.0.1
31
+ - run: bundle exec rspec
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper