claws-scan 0.7.6 → 0.8.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: e35f096c235fba21325d4385fd83ac9c7ca2466ca1e82e72311f3079dcd02276
4
- data.tar.gz: c5a5f8206a0f047bf0b49b31ba9976a8c41ad5c3476c8167683140298efcc4a6
3
+ metadata.gz: b06dc58b6a6cca01d4a26c696c0ad84ee026a850ecb154e5363ac87fe056c132
4
+ data.tar.gz: '006479039bafbefb2c33c15324c645b48a8dc36a607a6ac78c1922de273621f4'
5
5
  SHA512:
6
- metadata.gz: 8f58f8c09db0ccb0b3c1df00f09710bad07bcc691cb4b41681d5d6e2ff62e157c45742505aa9469d2e6b81d35b6a8ce020863019be057f7b36a780ddf314e65a
7
- data.tar.gz: 0161dad252e79ee9e79d85eb7af21d2eccf1ce5ae6b82d415fcd4a6d060989e5245c57593ca82ad2b7401716ecf5edbd89b3cb9d02bde036e72dcec3d5339ee7
6
+ metadata.gz: 162535cf6679e3ac35a352ddf4c8389063e9196f848707cf23dab847b2d42dae26803f2918418c13a8e50432fc0a74138eb44d61535692e01c1ff92a70291e06
7
+ data.tar.gz: 92d781d858a2da50fd81f4c9b1da5c2dab822e0dc9c9f4d69044e193481842b107e151d2dad8580233996e548c45b2e58fdd6bec47f4d4df56f076b35d858eed
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- claws-scan (0.7.6)
4
+ claws-scan (0.8.0)
5
5
  equation (~> 0.6)
6
6
  pry
7
7
  slop (~> 4.9)
data/lib/claws/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Claws
4
- VERSION = "0.7.6"
4
+ VERSION = "0.8.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: claws-scan
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.6
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Omar
@@ -85,7 +85,6 @@ files:
85
85
  - Rakefile
86
86
  - bin/analyze
87
87
  - config.yml
88
- - github_action.yml
89
88
  - lib/claws.rb
90
89
  - lib/claws/application.rb
91
90
  - lib/claws/base_rule.rb
data/github_action.yml DELETED
@@ -1,36 +0,0 @@
1
- name: Workflow Static Analyzer
2
-
3
- on:
4
- pull_request:
5
- branches:
6
- - main
7
-
8
- jobs:
9
- build:
10
- runs-on: ubuntu-latest
11
- name: Static Analyze
12
- steps:
13
- - name: Set Up Ruby
14
- uses: ruby/setup-ruby@v1
15
- with:
16
- ruby-version: '3.0'
17
- - uses: actions/checkout@v3
18
- with:
19
- fetch-depth: 0
20
- - name: Get PR diff Files
21
- uses: technote-space/get-diff-action@v5
22
- id: modified_actions
23
- with:
24
- PATTERNS: .github/workflows/*.y*ml
25
- - name: Set Up Claws
26
- run: |
27
- gem install --source "https://${{ secrets.BETTERMENT_GH_PACKAGES_PAT }}@rubygems.pkg.github.com/betterment" claws --version "0.1.4"
28
- - name: Analyze New/Changed Workflows
29
- run: |
30
- bungler_flags=""
31
- for workflow in ${{ env.GIT_DIFF }}
32
- do
33
- echo "$workflow"
34
- bungler_flags="-t $workflow $bungler_flags"
35
- done
36
- analyze -f github -c .claws-config.yml $bungler_flags