dradis-csv 3.20.0 → 3.21.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: 1b0852a3d79abcc0c4ab2fe6c8bcf9203014fd9da426126efd91386fd983667d
4
- data.tar.gz: 6cf6b2c8e530fea641d4e6555195cf6819b1aefd6b94ff4e017aed95fcc2367b
3
+ metadata.gz: 266c672720aef6efdc45f253342d01e1d7680ae6c2e3c47f431b4082c24e2cfe
4
+ data.tar.gz: 6a5a321c20ee87df7fab24a626f35cc1a8bdc0a2ac7b22df2e793c8aecb15ae2
5
5
  SHA512:
6
- metadata.gz: df1c621ff40282e468a5fa23c2a64e4086840038ef9a22875df08b551a6e7979abb1b108e794985aaec14d701f65e5e955c21adee371559d9e68af3106f50419
7
- data.tar.gz: 34ec80810b7c7840ac166dd3882df7574647d650317cfb8e0a29a940a4271a27884b637f0a88d9c7305cdc196c3eee86981f2a4d08d4f42067c4bf0adddd8414
6
+ metadata.gz: 9e455e553cf759e20dead17b0d7acc57943f76d8182f8c526949466b07f19f89dec55f0c9f628074d43bd6c4c91f4dfb873f167bd3978dc84df2cc770df2389b
7
+ data.tar.gz: 7cb8d99417aa53ac8b5668f7af7a0d394f176d7df4ba092f9d8c0eda9b666c6e93af720474a0d9f2d8c7aef02421a78cb17eebda3961bb030edef941fbc53704
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
+ ## Dradis Framework 3.21 (February, 2021) ##
2
+
3
+ * No changes.
4
+
1
5
  ## Dradis Framework 3.20 (December, 2020) ##
2
6
 
7
+ * Add views for the export view.
3
8
  * Use NamingService to build export filename.
4
9
 
5
10
  ## Dradis Framework 3.19 (September, 2020) ##
@@ -0,0 +1,10 @@
1
+ <%= content_tag :div, id: 'plugin-csv', class: 'tab-pane fade' do %>
2
+
3
+ <%= form_tag project_export_manager_path(current_project), target: '_blank' do %>
4
+ <%= hidden_field_tag :plugin, :csv %>
5
+ <%= hidden_field_tag :route, :root %>
6
+
7
+ <h4 class="header-underline mb-0">Ready when you are!</h4>
8
+ <button id="export-button" class="btn btn-lg btn-primary mt-4">Export</button>
9
+ <% end %>
10
+ <% end%>
@@ -0,0 +1,3 @@
1
+ <li class='nav-item'>
2
+ <a href='#csv' class='nav-link' data-toggle='tab' data-target='#plugin-csv'>Export results in CSV format</a>
3
+ </li>
@@ -1,3 +1,10 @@
1
+ module Dradis
2
+ module Plugins
3
+ module CVS
4
+ end
5
+ end
6
+ end
7
+
1
8
  require 'dradis/plugins/csv/engine'
2
9
  require 'dradis/plugins/csv/exporter'
3
10
  require 'dradis/plugins/csv/version'
@@ -8,7 +8,7 @@ module Dradis
8
8
 
9
9
  module VERSION
10
10
  MAJOR = 3
11
- MINOR = 20
11
+ MINOR = 21
12
12
  TINY = 0
13
13
  PRE = nil
14
14
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dradis-csv
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.20.0
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-01-07 00:00:00.000000000 Z
11
+ date: 2021-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dradis-plugins
@@ -84,6 +84,8 @@ files:
84
84
  - README.md
85
85
  - Rakefile
86
86
  - app/controllers/dradis/plugins/csv/base_controller.rb
87
+ - app/views/dradis/plugins/csv/export/_index-content.html.erb
88
+ - app/views/dradis/plugins/csv/export/_index-tabs.html.erb
87
89
  - config/routes.rb
88
90
  - dradis-csv.gemspec
89
91
  - lib/dradis-csv.rb