dradis-projects 3.20.0 → 3.21.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/app/views/dradis/plugins/projects/export/_index-content.html.erb +19 -0
- data/app/views/dradis/plugins/projects/export/_index-tabs.html.erb +3 -0
- data/lib/dradis/plugins/projects.rb +5 -3
- data/lib/dradis/plugins/projects/gem_version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d19a3cf6f2164c69c08fd2fa151849338f50cd2756c85a004caee2b304a34019
|
4
|
+
data.tar.gz: ae3b507fa0d58612cdd148237e2bf5d3d61430ce83e6e4ae43efa40cc21c64d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab39dd0a946b71c978443de7f921c30edcba47e4485459247b4cd4565998066fd53b5511747e0723faf4773aebe5ee37e9ec4c5b632aa47d35c04d08e37c8f23
|
7
|
+
data.tar.gz: 4e6527f380b9baaf70d974eb6b54ced56e471d02874a77ca6b23a6c0a5b6f9fa3cb44ac56bbd5b0be00cc24189a279c7601014cf9ec2637fe0a3f6979be7fd09
|
data/CHANGELOG.md
CHANGED
@@ -0,0 +1,19 @@
|
|
1
|
+
<%= content_tag :div, id: 'plugin-projects', class: 'tab-pane fade' do %>
|
2
|
+
<%= form_tag project_export_manager_path(current_project), target: '_blank' do %>
|
3
|
+
<%= hidden_field_tag :plugin, 'projects' %>
|
4
|
+
|
5
|
+
<h4 class="header-underline">Choose an export option</h4>
|
6
|
+
|
7
|
+
<div class="custom-control custom-radio">
|
8
|
+
<%= radio_button_tag :route, :package, true, :class => 'custom-control-input' %>
|
9
|
+
<label class="custom-control-label" for='route_package'>Package</label>
|
10
|
+
</div>
|
11
|
+
|
12
|
+
<div class="custom-control custom-radio">
|
13
|
+
<%= radio_button_tag :route, :template, false, :class => 'custom-control-input' %>
|
14
|
+
<label class="custom-control-label" for='route_template'>Template</label>
|
15
|
+
</div>
|
16
|
+
|
17
|
+
<button id="export-button" class="btn btn-lg btn-primary mt-4">Export</button>
|
18
|
+
<% end %>
|
19
|
+
<% end%>
|
@@ -1,8 +1,10 @@
|
|
1
1
|
module Dradis
|
2
2
|
module Plugins
|
3
3
|
module Projects
|
4
|
-
module Export
|
5
|
-
|
4
|
+
module Export
|
5
|
+
end
|
6
|
+
module Upload
|
7
|
+
end
|
6
8
|
end
|
7
9
|
end
|
8
10
|
end
|
@@ -16,4 +18,4 @@ require 'dradis/plugins/projects/version'
|
|
16
18
|
|
17
19
|
module Dradis::Plugins::Projects
|
18
20
|
ActiveSupport.run_load_hooks(:dradis_projects, self)
|
19
|
-
end
|
21
|
+
end
|
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: 3.
|
4
|
+
version: 3.21.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Martin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-02-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -112,6 +112,8 @@ files:
|
|
112
112
|
- Rakefile
|
113
113
|
- app/controllers/dradis/plugins/projects/packages_controller.rb
|
114
114
|
- app/controllers/dradis/plugins/projects/templates_controller.rb
|
115
|
+
- app/views/dradis/plugins/projects/export/_index-content.html.erb
|
116
|
+
- app/views/dradis/plugins/projects/export/_index-tabs.html.erb
|
115
117
|
- config/routes.rb
|
116
118
|
- dradis-projects.gemspec
|
117
119
|
- lib/dradis-projects.rb
|