dccscr 0.2.3 → 0.2.4
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/.gitlab-ci.yml +12 -5
- data/.rubocop.yml +3 -0
- data/Gemfile +2 -2
- data/Gemfile.lock +3 -1
- data/dccscr.gemspec +2 -2
- data/lib/dccscr/version.rb +1 -1
- data/lib/dccscr/whitelist.rb +4 -4
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 19f7a39dba0aaf6a38390ec0231123337295fc09ed67688f2385570c7a0e2e68
|
4
|
+
data.tar.gz: 2cb39e932916aa6f64c3e6bda49d7e92fdda67b3714172098db1a06bb3c09f05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2beaade232b0aace980995067f07b0cf50791d640cac99ee6bec6151a0a09f2c1d937ae432ec04e64b66974853971b9ca2f32d5397df7f92f206c8ec0b4ea96
|
7
|
+
data.tar.gz: 793bd0cf0c5d45a488e53e8c3382f87c3ad5428ccd7c3af31d6ff81fac57951d2c684e20e2b7d4ecdb6cf651c449b06e295e6dc2c978d3cd808338f3ae628a92
|
data/.gitlab-ci.yml
CHANGED
@@ -1,9 +1,16 @@
|
|
1
1
|
image: ruby:2.7.3
|
2
|
-
|
3
|
-
before_script:
|
2
|
+
example_job:
|
3
|
+
before_script:
|
4
4
|
- gem install bundler -v 2.2.17
|
5
5
|
- bundle install
|
6
|
-
|
7
|
-
example_job:
|
8
6
|
script:
|
9
|
-
|
7
|
+
- bundle exec rake
|
8
|
+
stages:
|
9
|
+
- test
|
10
|
+
sast:
|
11
|
+
stage: test
|
12
|
+
include:
|
13
|
+
- template: Security/SAST.gitlab-ci.yml
|
14
|
+
- template: Security/Dependency-Scanning.gitlab-ci.yml
|
15
|
+
- template: Security/Secret-Detection.gitlab-ci.yml
|
16
|
+
- template: Security/License-Scanning.gitlab-ci.yml
|
data/.rubocop.yml
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
dccscr (0.2.
|
4
|
+
dccscr (0.2.4)
|
5
|
+
shellwords (~> 0.1)
|
5
6
|
|
6
7
|
GEM
|
7
8
|
remote: https://rubygems.org/
|
@@ -31,6 +32,7 @@ GEM
|
|
31
32
|
rubocop-rake (0.6.0)
|
32
33
|
rubocop (~> 1.0)
|
33
34
|
ruby-progressbar (1.11.0)
|
35
|
+
shellwords (0.1.0)
|
34
36
|
unicode-display_width (2.0.0)
|
35
37
|
|
36
38
|
PLATFORMS
|
data/dccscr.gemspec
CHANGED
@@ -26,8 +26,8 @@ Gem::Specification.new do |spec|
|
|
26
26
|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
27
27
|
spec.require_paths = ['lib']
|
28
28
|
|
29
|
-
#
|
30
|
-
|
29
|
+
# ec.add_dependency 'shell', '~> 0.8'
|
30
|
+
spec.add_dependency 'shellwords', '~> 0.1'
|
31
31
|
|
32
32
|
# For more information and examples about making a new gem, checkout our
|
33
33
|
# guide at: https://bundler.io/guides/creating_gem.html
|
data/lib/dccscr/version.rb
CHANGED
data/lib/dccscr/whitelist.rb
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
require 'json'
|
4
4
|
require 'yaml'
|
5
5
|
require 'tmpdir'
|
6
|
+
require 'shellwords'
|
6
7
|
|
7
8
|
module DCCSCR
|
8
9
|
# Class to download the dccscr_whitelist repo and store greylist entries.
|
@@ -27,10 +28,9 @@ module DCCSCR
|
|
27
28
|
end
|
28
29
|
|
29
30
|
if clone
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
$?.success? || raise('error cloning repo')
|
31
|
+
clone_options = Shellwords.join(Shellwords.split(clone_options).map { |w| Shellwords.escape(w) })
|
32
|
+
system "git clone #{clone_options} -- #{@repo.inspect} #{@path.inspect}"
|
33
|
+
$?.success? || fail('error cloning repo')
|
34
34
|
end
|
35
35
|
|
36
36
|
@entries = {}
|
metadata
CHANGED
@@ -1,15 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dccscr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Frank J. Cameron
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-08-
|
12
|
-
dependencies:
|
11
|
+
date: 2021-08-08 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: shellwords
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.1'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0.1'
|
13
27
|
description:
|
14
28
|
email:
|
15
29
|
- fjc@fastmail.net
|