dradis-html_export 4.11.1 → 4.13.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f8d401dff28d6d627906b4137c2d87e35f87f05672910cd9849a0aeead57a47d
4
- data.tar.gz: 2f11f60f9a72c043ef24711e4844aa75c420e058227092e00ba299f9613a0a5d
3
+ metadata.gz: 7e4482128bd80253dbe7bdf39cc4417fba5215888767fb26af939181948a2dd5
4
+ data.tar.gz: ad7180cfd23a83cb88d508aa026bad71086db311ac42f095d32d1a95d957410a
5
5
  SHA512:
6
- metadata.gz: f28665e7fac8749f22be866f1512aec45c8510dac94d0b29e3bb4f65fc4e9187eaafd092031e2c2828bbdda2098d55ce1ff49d38c87f354aa7552088e06a0452
7
- data.tar.gz: c35b4e638bb7a5952155d8a43c505ff1fcdce00408c859ef530aab2225019e8154d53151553bcddaf0d2c0ffb88df90db1ccd834164a58d7cf8afc9bd1d613ba
6
+ metadata.gz: 4022de3698800ff04d95a620b5e579bcab1ebd2ee724f18f1aa4c9aaaa9e87443b8a81913f19ec112eee6522a986fd8fa03c86c0ea15267a33edf10ff9774f13
7
+ data.tar.gz: 18062bbb7996f68e49068714128c1e2fcfc37bd67f2e28c77728458fbbfd5a2ffa446a44b6a63f6022eda99eefdaee7304ba242a50c48a474d1ab3e9a8144368
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ v4.13.0 (July 2024)
2
+ - No changes
3
+
4
+ v4.12.0 (May 2024)
5
+ - Update Dradis links in README
6
+
1
7
  v4.11.0 (January 2024)
2
8
  - Update initializer to work with Rails 7
3
9
 
data/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  This plugin generates an HTML report for the notes in your [Dradis Framework](https://github.com/dradis/dradisframework) repository.
7
7
 
8
- The plugin requires Dradis 3.0 or higher.
8
+ The add-on requires [Dradis CE](https://dradis.com/ce/) > 3.0, or [Dradis Pro](https://dradis.com/).
9
9
 
10
10
 
11
11
  ## More information
@@ -2,7 +2,7 @@
2
2
  <% if Dradis::Plugins::HtmlExport::TemplatePresenter.templates.any? %>
3
3
  <%= form_tag html_export.project_report_path(current_project) do %>
4
4
  <h4 class="header-underline">Choose a template</h4>
5
- <p>Please choose one of the templates available for this plugin (find them in <code>.<%= Dradis::Plugins::HtmlExport::TemplatePresenter.templates_dir[Rails.root.to_s.length..-1] %></code>)</p>
5
+ <p>Please choose one of the templates available for this plugin (find them in <code>./templates/reports/html_export</code>)</p>
6
6
 
7
7
  <% Dradis::Plugins::HtmlExport::TemplatePresenter.each_template do |template| %>
8
8
  <% present(template, Dradis::Plugins::HtmlExport::TemplatePresenter) do |template_presenter| %>
@@ -24,6 +24,9 @@ module Dradis
24
24
 
25
25
  initializer 'dradis-html_export.mount_engine' do
26
26
  Rails.application.reloader.to_prepare do
27
+ # By default, this engine is loaded into the main app. So, upon app
28
+ # initialization, we first check if the DB is loaded and the Configuration
29
+ # table has been created, before checking if the engine is enabled
27
30
  if (ActiveRecord::Base.connection rescue false) && ::Configuration.table_exists?
28
31
  Rails.application.routes.append do
29
32
  # Enabling/disabling integrations calls Rails.application.reload_routes! we need the enable
@@ -8,8 +8,8 @@ module Dradis
8
8
 
9
9
  module VERSION
10
10
  MAJOR = 4
11
- MINOR = 11
12
- TINY = 1
11
+ MINOR = 13
12
+ TINY = 0
13
13
  PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dradis-html_export
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.11.1
4
+ version: 4.13.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: 2024-01-17 00:00:00.000000000 Z
11
+ date: 2024-08-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dradis-plugins
@@ -108,7 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
108
108
  - !ruby/object:Gem::Version
109
109
  version: '0'
110
110
  requirements: []
111
- rubygems_version: 3.3.7
111
+ rubygems_version: 3.5.6
112
112
  signing_key:
113
113
  specification_version: 4
114
114
  summary: Dradis HTML export plugin