dradis-projects 4.17.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 +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/dradis/plugins/projects/export/package.rb +1 -1
- data/lib/dradis/plugins/projects/gem_version.rb +1 -1
- data/lib/tasks/thorfile.rb +2 -2
- metadata +3 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68c69abdb6f2361b38506c00b0f09c73f2649740562adc4b892fd327e1991c07
|
4
|
+
data.tar.gz: 302e1d304e375a011c2407ad1e44645b322565aa3a12c0a0ae42df9bf30d0a09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04bd2253054acca3552413d9dba785856e5ccdbeaeda60b9c9486b764b8ef065f0175767fd5d7d482d685016306d8983dc093f44fc35b9138d2e06f630b408d3
|
7
|
+
data.tar.gz: 82da1f7fac46667a82e4d103808e834db44b727b8695de9ab29c230d79cb4f67a8c86995b2e36118759a6eef862e2f2fb7f01094365a2b718f5a7cd2cbd05eb1
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
13
|
+
File.delete(filename) if File.exist?(filename)
|
14
14
|
|
15
15
|
logger.debug{ "Creating a new Zip file in #{filename}..." }
|
16
16
|
|
data/lib/tasks/thorfile.rb
CHANGED
@@ -72,7 +72,7 @@ class UploadTasks < Thor
|
|
72
72
|
def template(file_path)
|
73
73
|
require 'config/environment'
|
74
74
|
|
75
|
-
unless File.
|
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.
|
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.
|
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:
|
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.
|
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:
|