dradis-projects 4.16.0 → 4.18.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: 190b2974ea89987ce0bd6f61292f0cb9f6fa6d1e667f30f78a7242e3c66c4ebf
4
- data.tar.gz: 7d229b7f4a3bc5ba44d0d404abe3f00e5761c75c692e5887a50bfecf2eaa6c75
3
+ metadata.gz: 68c69abdb6f2361b38506c00b0f09c73f2649740562adc4b892fd327e1991c07
4
+ data.tar.gz: 302e1d304e375a011c2407ad1e44645b322565aa3a12c0a0ae42df9bf30d0a09
5
5
  SHA512:
6
- metadata.gz: 213a1ae826f13998bc30c53f59f06cd3e8da11d6540e402b1839fa7af8d5d55956787b7cf83241da8e78dc5f0ac12759a1f2c11bb2fce4d3b873b403ccffcaba
7
- data.tar.gz: eb451183b34171baf0d9056f81a90bf535e84ec13316cc0b00e875d16c9fdb4fb6731d355660b5de2174cf5c7be900279a5c1c16492343ff97c5540c33e25a91
6
+ metadata.gz: 04bd2253054acca3552413d9dba785856e5ccdbeaeda60b9c9486b764b8ef065f0175767fd5d7d482d685016306d8983dc093f44fc35b9138d2e06f630b408d3
7
+ data.tar.gz: 82da1f7fac46667a82e4d103808e834db44b727b8695de9ab29c230d79cb4f67a8c86995b2e36118759a6eef862e2f2fb7f01094365a2b718f5a7cd2cbd05eb1
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ v4.18.0 (September 2025)
2
+ - Update File.exists? calls for ruby upgrade
3
+
4
+ v4.17.0 (July 2025)
5
+ - No changes
6
+
1
7
  v4.16.0 (May 2025)
2
8
  - No changes
3
9
 
@@ -10,7 +10,7 @@ module Dradis::Plugins::Projects::Export
10
10
  filename = args[:filename]
11
11
  logger = options.fetch(:logger, Rails.logger)
12
12
 
13
- File.delete(filename) if File.exists?(filename)
13
+ File.delete(filename) if File.exist?(filename)
14
14
 
15
15
  logger.debug{ "Creating a new Zip file in #{filename}..." }
16
16
 
@@ -8,7 +8,7 @@ module Dradis
8
8
 
9
9
  module VERSION
10
10
  MAJOR = 4
11
- MINOR = 16
11
+ MINOR = 18
12
12
  TINY = 0
13
13
  PRE = nil
14
14
 
@@ -72,7 +72,7 @@ class UploadTasks < Thor
72
72
  def template(file_path)
73
73
  require 'config/environment'
74
74
 
75
- unless File.exists?(file_path)
75
+ unless File.exist?(file_path)
76
76
  $stderr.puts "** the file [#{file_path}] does not exist"
77
77
  exit -1
78
78
  end
@@ -98,7 +98,7 @@ class UploadTasks < Thor
98
98
  def package(file_path)
99
99
  require 'config/environment'
100
100
 
101
- unless File.exists?(file_path)
101
+ unless File.exist?(file_path)
102
102
  $stderr.puts "** the file [#{file_path}] does not exist"
103
103
  exit -1
104
104
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dradis-projects
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.16.0
4
+ version: 4.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Martin
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-05-16 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: bundler
@@ -96,7 +95,6 @@ dependencies:
96
95
  version: '0'
97
96
  description: This plugin allows you to dump the contents of the repo into a zip archive
98
97
  and restore the state from one of them.
99
- email:
100
98
  executables: []
101
99
  extensions: []
102
100
  extra_rdoc_files: []
@@ -151,7 +149,6 @@ homepage: https://dradis.com/ce/
151
149
  licenses:
152
150
  - GPL-2
153
151
  metadata: {}
154
- post_install_message:
155
152
  rdoc_options: []
156
153
  require_paths:
157
154
  - lib
@@ -166,8 +163,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
166
163
  - !ruby/object:Gem::Version
167
164
  version: '0'
168
165
  requirements: []
169
- rubygems_version: 3.5.6
170
- signing_key:
166
+ rubygems_version: 3.6.9
171
167
  specification_version: 4
172
168
  summary: Project export/upload for the Dradis Framework.
173
169
  test_files: