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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2d2ddea7669bd0be18eee681c20b8e6d5088a1a2002c53ab52af10c7f60935fa
4
- data.tar.gz: ffa4f684720c88b363c5df24fecb54b7879650e2c44ed644028706e07d36abef
3
+ metadata.gz: 3bcd53f2c77b57ae50a4dcadfe19d40909b8f2685d7ebba6d6a53c793873ffd9
4
+ data.tar.gz: 274755ac6e0a42787097f058b234e4bb027a608d265cb3109cc8971a181acf41
5
5
  SHA512:
6
- metadata.gz: 41423c065b1d9c97f6993f3f8f06b18cc5252f608e1f42278245b4ac1d6772c1b8524971cfb2ee21ded17e2382828e44703267c2d6dc6b0f100b13c826b07517
7
- data.tar.gz: b038efc5501ac5007eb20858ec29e257b43ce04eaa41e4d28d19e1324daffef0e669ce38b9c35aef6ba07d5aebdac2c045e571c85fd26e46751db05f2ad7415d
6
+ metadata.gz: 1d2688374577977f26729c95bc55d818e69e1813cee20bf1c30fd12c5181649c04a76358b0cbb1b572e168a43fb3d24e0533e764dcd6c8e256097d9dbe63a64a
7
+ data.tar.gz: abc36830a4e93d71aee199e9dcb3549902454055e88cafdd40e276d5770586a0c3c978e49447449bc2698f4b72e011d370e26c5d149ec00f17abe52885f03ebb
@@ -10,9 +10,9 @@ jobs:
10
10
  - name: Set up Ruby
11
11
  uses: ruby/setup-ruby@v1
12
12
  with:
13
- ruby-version: 2.5.7
13
+ ruby-version: 3.1.4
14
14
  - name: Run the default task
15
15
  run: |
16
- gem install bundler -v 2.2.14
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
@@ -12,7 +12,7 @@ module RSpec
12
12
  private
13
13
 
14
14
  def format_example(example)
15
- return if already_processed?(example.file_path)
15
+ return {} if already_processed?(example.file_path)
16
16
 
17
17
  already_processed!(example.file_path)
18
18
 
@@ -3,7 +3,7 @@
3
3
  module RSpec
4
4
  module Big
5
5
  module Infer
6
- VERSION = "0.8.0"
6
+ VERSION = "0.9.0"
7
7
  end
8
8
  end
9
9
  end
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.8.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-06-26 00:00:00.000000000 Z
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