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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 261894021f66c455747ff0bf23dae30fa2a1e6f81c49eec8ca5259452c5ee394
4
- data.tar.gz: fc290c6ac35dfd3f9448350b56af6483a29247b5d633b217e1e0d2af9c87f541
3
+ metadata.gz: 19f7a39dba0aaf6a38390ec0231123337295fc09ed67688f2385570c7a0e2e68
4
+ data.tar.gz: 2cb39e932916aa6f64c3e6bda49d7e92fdda67b3714172098db1a06bb3c09f05
5
5
  SHA512:
6
- metadata.gz: 0064c33c1810b27a0221a833c9269c70eed53f60206a4ce1d0f9b25fbe0b15dda1532e6e73bb0e91628d8243ab500f48ad9899e3f61c5f788eebf12ee3c2977e
7
- data.tar.gz: 30faf367d582d3ad191977cca89d8337df665fde843709af991b3e5eba408c6f71f9de396fe9d44f11b0fe074cdfa7989833371f092229b2c04c684ab3bb5bd6
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
- - bundle exec rake
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
@@ -26,6 +26,9 @@ Style/HashConversion:
26
26
  Style/SpecialGlobalVars:
27
27
  Enabled: false
28
28
 
29
+ Style/SignalException:
30
+ Enabled: false
31
+
29
32
  Style/StringLiterals:
30
33
  Enabled: true
31
34
  EnforcedStyle: single_quotes
data/Gemfile CHANGED
@@ -6,9 +6,9 @@ source 'https://rubygems.org'
6
6
  gemspec
7
7
 
8
8
  gem 'rake', '~> 13.0'
9
+ gem 'rubocop-rake'
9
10
 
10
11
  gem 'minitest', '~> 5.0'
12
+ gem 'rubocop-minitest'
11
13
 
12
14
  gem 'rubocop', '~> 1.7'
13
- gem 'rubocop-rake'
14
- gem 'rubocop-minitest'
data/Gemfile.lock CHANGED
@@ -1,7 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dccscr (0.2.3)
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
- # Uncomment to register a new dependency of your gem
30
- # spec.add_dependency 'example-gem', '~> 1.0'
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DCCSCR
4
- VERSION = '0.2.3'
4
+ VERSION = '0.2.4'
5
5
  end
@@ -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
- raise('path exists and is not empty') unless Dir.empty?(@path)
31
-
32
- `git clone #{clone_options} #{@repo.inspect} #{@path.inspect}`
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.3
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-07 00:00:00.000000000 Z
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