Bump wicked_pdf from 2.8.0 to 2.8.1

We're also updating the initializer, which contained a few typos that
were fixed in this version [1].

[1] https://github.com/mileszs/wicked_pdf/commit/19b16c5052

Bumps [wicked_pdf](https://github.com/mileszs/wicked_pdf) from 2.8.0 to 2.8.1.
- [Release notes](https://github.com/mileszs/wicked_pdf/releases)
- [Changelog](https://github.com/mileszs/wicked_pdf/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mileszs/wicked_pdf/commits)

---
updated-dependencies:
- dependency-name: wicked_pdf
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2024-10-05 15:53:06 +00:00
committed by Javi Martín
parent 13633f0775
commit 23b998e549
3 changed files with 6 additions and 6 deletions

View File

@@ -60,7 +60,7 @@ gem "uglifier", "~> 4.2.0"
gem "uuidtools", "~> 2.2.0" gem "uuidtools", "~> 2.2.0"
gem "view_component", "~> 3.11.0" gem "view_component", "~> 3.11.0"
gem "whenever", "~> 1.0.0", require: false gem "whenever", "~> 1.0.0", require: false
gem "wicked_pdf", "~> 2.8.0" gem "wicked_pdf", "~> 2.8.1"
gem "wkhtmltopdf-binary", "~> 0.12.6" gem "wkhtmltopdf-binary", "~> 0.12.6"
group :development, :test do group :development, :test do

View File

@@ -684,7 +684,7 @@ GEM
websocket-extensions (0.1.5) websocket-extensions (0.1.5)
whenever (1.0.0) whenever (1.0.0)
chronic (>= 0.6.3) chronic (>= 0.6.3)
wicked_pdf (2.8.0) wicked_pdf (2.8.1)
activesupport activesupport
wkhtmltopdf-binary (0.12.6.6) wkhtmltopdf-binary (0.12.6.6)
xpath (3.2.0) xpath (3.2.0)
@@ -792,7 +792,7 @@ DEPENDENCIES
view_component (~> 3.11.0) view_component (~> 3.11.0)
web-console (~> 4.2.1) web-console (~> 4.2.1)
whenever (~> 1.0.0) whenever (~> 1.0.0)
wicked_pdf (~> 2.8.0) wicked_pdf (~> 2.8.1)
wkhtmltopdf-binary (~> 0.12.6) wkhtmltopdf-binary (~> 0.12.6)
BUNDLED WITH BUNDLED WITH

View File

@@ -11,7 +11,7 @@
WickedPdf.configure do |config| WickedPdf.configure do |config|
# Path to the wkhtmltopdf executable: This usually isn't needed if using # Path to the wkhtmltopdf executable: This usually isn't needed if using
# one of the wkhtmltopdf-binary family of gems. # one of the wkhtmltopdf-binary family of gems.
# config.exe_path = '/usr/local/bin/wkhtmltopdf', # config.exe_path = '/usr/local/bin/wkhtmltopdf'
# or # or
# config.exe_path = Gem.bin_path('wkhtmltopdf-binary', 'wkhtmltopdf') # config.exe_path = Gem.bin_path('wkhtmltopdf-binary', 'wkhtmltopdf')
@@ -20,11 +20,11 @@ WickedPdf.configure do |config|
# Layout file to be used for all PDFs # Layout file to be used for all PDFs
# (but can be overridden in `render :pdf` calls) # (but can be overridden in `render :pdf` calls)
# config.layout = 'pdf.html', # config.layout = 'pdf.html'
# Using wkhtmltopdf without an X server can be achieved by enabling the # Using wkhtmltopdf without an X server can be achieved by enabling the
# 'use_xvfb' flag. This will wrap all wkhtmltopdf commands around the # 'use_xvfb' flag. This will wrap all wkhtmltopdf commands around the
# 'xvfb-run' command, in order to simulate an X server. # 'xvfb-run' command, in order to simulate an X server.
# #
# config.use_xvfb = true, # config.use_xvfb = true
end end