dradis-html_export 4.19.0 → 5.0.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: b2ec76517b7a9e3d5a6b77ccb4965296dbcef16dc0690c4ae23806cee93f05dc
4
- data.tar.gz: 171805bf27e4c9a2f8d45f63a0d10f7889fc43dbef1ed746c6dc1b8d4b5f969c
3
+ metadata.gz: 405830fb0f176a5ce46b539849fe158f7422dbe81f1488396ab7b34cfe049f6e
4
+ data.tar.gz: dc855510232d4fe84359e117d4f107d6c7b7b74f2192a50b4bf069973433a55a
5
5
  SHA512:
6
- metadata.gz: 16ff119e9d812a799bcd348b16c125f22227ff80193c8961dd82da0319ea017fc123fe051c6d46c9cd19e301456478fba536ade7b8831a15317a9b1164402e84
7
- data.tar.gz: 82e24b3ff124c1167a272bba048600a34b1ed14923ca967549a7a238ab6251a31e236440dd1d4ec57a8da292c265b6f16251511e4b782d15cdad8d88141c9609
6
+ metadata.gz: 28dcf37f58a84f351a44b0985e5ed733ed113869c2f00cc83d505a5ad9557375c8001e0b07bbb9f94ca781bfdd321942a043767860f0aace891b7509fa04497c
7
+ data.tar.gz: 0b564192ef5fd7da5a520a3644cdc648e724af777a5bc34a8f0e1a584e85bbde90f2ec6de3be90c7d7684fa144a0c4bc04fd3f870a4300432c589790ab93f96c
data/.gitignore CHANGED
@@ -17,3 +17,4 @@ test/tmp
17
17
  test/version_tmp
18
18
  tmp
19
19
  /vendor/
20
+ .DS_Store
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ v5.0.0 (March 2026)
2
+ - No changes
3
+
1
4
  v4.19.0 (November 2025)
2
5
  - No changes
3
6
 
@@ -23,13 +23,11 @@ module Dradis
23
23
  end if defined?(Dradis::Pro)
24
24
 
25
25
  initializer 'dradis-html_export.mount_engine' do
26
- Rails.application.reloader.to_prepare do
27
- Rails.application.routes.append do
28
- # Enabling/disabling integrations calls Rails.application.reload_routes! we need the enable
29
- # check inside the block to ensure the routes can be re-enabled without a server restart
30
- if Engine.enabled?
31
- mount Engine => '/', as: :html_export
32
- end
26
+ Rails.application.routes.append do
27
+ # Enabling/disabling integrations calls Rails.application.reload_routes! we need the enable
28
+ # check inside the block to ensure the routes can be re-enabled without a server restart
29
+ if Engine.enabled?
30
+ mount Engine => '/', as: :html_export
33
31
  end
34
32
  end
35
33
  end
@@ -7,8 +7,8 @@ module Dradis
7
7
  end
8
8
 
9
9
  module VERSION
10
- MAJOR = 4
11
- MINOR = 19
10
+ MAJOR = 5
11
+ MINOR = 0
12
12
  TINY = 0
13
13
  PRE = nil
14
14
 
@@ -13,7 +13,7 @@ class HtmlExportTasks < Thor
13
13
  # The options we'll end up passing to the Processor class
14
14
  opts = {}
15
15
 
16
- report_path = options.output || Rails.root
16
+ report_path = options.output || Rails.root.join('tmp')
17
17
  unless report_path.to_s =~ /\.html\z/
18
18
  date = DateTime.now.strftime("%Y-%m-%d")
19
19
  base_filename = "dradis-report_#{date}.html"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dradis-html_export
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.19.0
4
+ version: 5.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Martin