-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from hebron-george/generate_simple_lease
PDF Gems included
- Loading branch information
Showing
5 changed files
with
48 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Happy House</title> | ||
</head> | ||
<body> | ||
<%= yield %> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# WickedPDF Global Configuration | ||
# | ||
# Use this to set up shared configuration options for your entire application. | ||
# Any of the configuration options shown here can also be applied to single | ||
# models by passing arguments to the `render :pdf` call. | ||
# | ||
# To learn more, check out the README: | ||
# | ||
# https://github.com/mileszs/wicked_pdf/blob/master/README.md | ||
|
||
WickedPdf.config = { | ||
# Path to the wkhtmltopdf executable: This usually isn't needed if using | ||
# one of the wkhtmltopdf-binary family of gems. | ||
# exe_path: '/usr/local/bin/wkhtmltopdf', | ||
# or | ||
# exe_path: Gem.bin_path('wkhtmltopdf-binary', 'wkhtmltopdf') | ||
|
||
# Layout file to be used for all PDFs | ||
# (but can be overridden in `render :pdf` calls) | ||
# layout: 'pdf.html', | ||
} |