rspec-big-infer 0.8.0 → 0.9.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/workflows/main.yml +2 -2
- data/.github/workflows/semgrep.yml +38 -0
- data/lib/rspec/big/infer/formatter.rb +1 -1
- data/lib/rspec/big/infer/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3bcd53f2c77b57ae50a4dcadfe19d40909b8f2685d7ebba6d6a53c793873ffd9
|
4
|
+
data.tar.gz: 274755ac6e0a42787097f058b234e4bb027a608d265cb3109cc8971a181acf41
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d2688374577977f26729c95bc55d818e69e1813cee20bf1c30fd12c5181649c04a76358b0cbb1b572e168a43fb3d24e0533e764dcd6c8e256097d9dbe63a64a
|
7
|
+
data.tar.gz: abc36830a4e93d71aee199e9dcb3549902454055e88cafdd40e276d5770586a0c3c978e49447449bc2698f4b72e011d370e26c5d149ec00f17abe52885f03ebb
|
data/.github/workflows/main.yml
CHANGED
@@ -10,9 +10,9 @@ jobs:
|
|
10
10
|
- name: Set up Ruby
|
11
11
|
uses: ruby/setup-ruby@v1
|
12
12
|
with:
|
13
|
-
ruby-version:
|
13
|
+
ruby-version: 3.1.4
|
14
14
|
- name: Run the default task
|
15
15
|
run: |
|
16
|
-
gem install bundler -v 2.
|
16
|
+
gem install bundler -v 2.6.7
|
17
17
|
bundle install
|
18
18
|
bundle exec rake
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# Name of this GitHub Actions workflow.
|
2
|
+
name: Semgrep CE scan
|
3
|
+
|
4
|
+
on:
|
5
|
+
# Scan in PRs:
|
6
|
+
pull_request: {}
|
7
|
+
# Scan on-demand through GitHub Actions interface:
|
8
|
+
workflow_dispatch: {}
|
9
|
+
# Scan mainline branches and report all findings:
|
10
|
+
push:
|
11
|
+
branches: ["master", "main"]
|
12
|
+
# Schedule the CI job (this method uses cron syntax):
|
13
|
+
schedule:
|
14
|
+
- cron: '20 17 * * *' # Sets Semgrep to scan every day at 17:20 UTC.
|
15
|
+
# It is recommended to change the schedule to a random time.
|
16
|
+
|
17
|
+
permissions:
|
18
|
+
contents: read
|
19
|
+
|
20
|
+
jobs:
|
21
|
+
semgrep:
|
22
|
+
# User definable name of this GitHub Actions job.
|
23
|
+
name: semgrep-oss/scan
|
24
|
+
# If you are self-hosting, change the following `runs-on` value:
|
25
|
+
runs-on: ubuntu-latest
|
26
|
+
|
27
|
+
container:
|
28
|
+
# A Docker image with Semgrep installed. Do not change this.
|
29
|
+
image: semgrep/semgrep
|
30
|
+
|
31
|
+
# Skip any PR created by dependabot to avoid permission issues:
|
32
|
+
if: (github.actor != 'dependabot[bot]')
|
33
|
+
|
34
|
+
steps:
|
35
|
+
# Fetch project source with GitHub Actions Checkout. Use either v3 or v4.
|
36
|
+
- uses: actions/checkout@v4
|
37
|
+
# Run the "semgrep scan" command on the command line of the docker image.
|
38
|
+
- run: semgrep scan --config=p/ci --metrics=off
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-big-infer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Patryk Ptasinski
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec-core
|
@@ -47,6 +47,7 @@ extensions: []
|
|
47
47
|
extra_rdoc_files: []
|
48
48
|
files:
|
49
49
|
- ".github/workflows/main.yml"
|
50
|
+
- ".github/workflows/semgrep.yml"
|
50
51
|
- ".gitignore"
|
51
52
|
- ".rubocop.yml"
|
52
53
|
- Gemfile
|