dradis-projects 4.10.0 → 4.12.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/.github/pull_request_template.md +45 -0
- data/CHANGELOG.md +6 -0
- data/README.md +2 -2
- data/dradis-projects.gemspec +1 -1
- data/lib/dradis/plugins/projects/gem_version.rb +1 -1
- metadata +8 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6affc459d80778487c51934447f042e484644a9de97118deb4e52b8c76f8f25b
|
|
4
|
+
data.tar.gz: 7a3c4d53d11ca6ef06a49db7bbad50a2c9321a46f178ea68428be2ef4053904a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca444e3f734259a5aec58271d9da279d426074718003b68fab9f3c9b6751c377f8776860dc3c8a59fa578acc81d55b6bfc886672e69431b81bb0ec9d4c72cba0
|
|
7
|
+
data.tar.gz: eb3bd2831385b49128828cef8450f50d111c9a5a99a1c9b8c3844eb3f6e78146ef3011e73bd5b93c6fb9566f6ee75553a463cf73f986dee090030607014a84c3
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Please review [CONTRIBUTING.md](https://github.com/dradis/dradis-ce/blob/develop/CONTRIBUTING.md) and remove this line.
|
|
2
|
+
|
|
3
|
+
### Summary
|
|
4
|
+
|
|
5
|
+
Provide a general description of the code changes in your pull
|
|
6
|
+
request... were there any bugs you had fixed? If so, mention them. If
|
|
7
|
+
these bugs have open GitHub issues, be sure to tag them here as well,
|
|
8
|
+
to keep the conversation linked together.
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Testing Steps
|
|
12
|
+
|
|
13
|
+
Provide steps to test functionality, described in detail for someone not familiar with this part of the application / code base
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Other Information
|
|
17
|
+
|
|
18
|
+
If there's anything else that's important and relevant to your pull
|
|
19
|
+
request, mention that information here. This could include
|
|
20
|
+
benchmarks, or other information.
|
|
21
|
+
|
|
22
|
+
Thanks for contributing to Dradis!
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Copyright assignment
|
|
26
|
+
|
|
27
|
+
Collaboration is difficult with commercial closed source but we want
|
|
28
|
+
to keep as much of the OSS ethos as possible available to users
|
|
29
|
+
who want to fix it themselves.
|
|
30
|
+
|
|
31
|
+
In order to unambiguously own and sell Dradis Framework commercial
|
|
32
|
+
products, we must have the copyright associated with the entire
|
|
33
|
+
codebase. Any code you create which is merged must be owned by us.
|
|
34
|
+
That's not us trying to be a jerks, that's just the way it works.
|
|
35
|
+
|
|
36
|
+
You can delete this section, but the following sentence needs to
|
|
37
|
+
remain in the PR's description:
|
|
38
|
+
|
|
39
|
+
> I assign all rights, including copyright, to any future Dradis
|
|
40
|
+
> work by myself to Security Roots.
|
|
41
|
+
|
|
42
|
+
### Check List
|
|
43
|
+
|
|
44
|
+
- [ ] Added a CHANGELOG entry
|
|
45
|
+
- [ ] Added specs
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -11,12 +11,12 @@ This plugin will work with any database supported by Rails' ActiveResource data
|
|
|
11
11
|
|
|
12
12
|
## More information
|
|
13
13
|
|
|
14
|
-
See the Dradis Framework's [README.md](https://github.com/dradis/
|
|
14
|
+
See the Dradis Framework's [README.md](https://github.com/dradis/dradis-ce/blob/develop/README.md)
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
## Contributing
|
|
18
18
|
|
|
19
|
-
See the Dradis Framework's [CONTRIBUTING.md](https://github.com/dradis/
|
|
19
|
+
See the Dradis Framework's [CONTRIBUTING.md](https://github.com/dradis/dradis-ce/blob/develop/CONTRIBUTING.md)
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
## License
|
data/dradis-projects.gemspec
CHANGED
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
spec.license = 'GPL-2'
|
|
14
14
|
|
|
15
15
|
spec.authors = ['Daniel Martin']
|
|
16
|
-
spec.homepage = '
|
|
16
|
+
spec.homepage = 'https://dradis.com/ce/'
|
|
17
17
|
|
|
18
18
|
spec.files = `git ls-files`.split($\)
|
|
19
19
|
spec.executables = spec.files.grep(%r{^bin/}).map { |f| File.basename(f) }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dradis-projects
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.12.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Martin
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-05-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -96,11 +96,12 @@ dependencies:
|
|
|
96
96
|
version: '0'
|
|
97
97
|
description: This plugin allows you to dump the contents of the repo into a zip archive
|
|
98
98
|
and restore the state from one of them.
|
|
99
|
-
email:
|
|
99
|
+
email:
|
|
100
100
|
executables: []
|
|
101
101
|
extensions: []
|
|
102
102
|
extra_rdoc_files: []
|
|
103
103
|
files:
|
|
104
|
+
- ".github/pull_request_template.md"
|
|
104
105
|
- ".gitignore"
|
|
105
106
|
- ".ruby-version"
|
|
106
107
|
- CHANGELOG.md
|
|
@@ -145,11 +146,11 @@ files:
|
|
|
145
146
|
- spec/lib/dradis/plugins/projects/upload/v1/template_spec.rb
|
|
146
147
|
- spec/lib/dradis/plugins/projects/upload/v2/template_spec.rb
|
|
147
148
|
- spec/lib/dradis/plugins/projects/upload/v4/template_spec.rb
|
|
148
|
-
homepage:
|
|
149
|
+
homepage: https://dradis.com/ce/
|
|
149
150
|
licenses:
|
|
150
151
|
- GPL-2
|
|
151
152
|
metadata: {}
|
|
152
|
-
post_install_message:
|
|
153
|
+
post_install_message:
|
|
153
154
|
rdoc_options: []
|
|
154
155
|
require_paths:
|
|
155
156
|
- lib
|
|
@@ -165,7 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
165
166
|
version: '0'
|
|
166
167
|
requirements: []
|
|
167
168
|
rubygems_version: 3.1.4
|
|
168
|
-
signing_key:
|
|
169
|
+
signing_key:
|
|
169
170
|
specification_version: 4
|
|
170
171
|
summary: Project export/upload for the Dradis Framework.
|
|
171
172
|
test_files:
|