bidi2pdf-rails 0.0.1.alpha.1

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.
Files changed (88) hide show
  1. checksums.yaml +7 -0
  2. data/.idea/.gitignore +8 -0
  3. data/.idea/bidi2pdf-rails.iml +449 -0
  4. data/.idea/inspectionProfiles/profiles_settings.xml +5 -0
  5. data/.idea/misc.xml +4 -0
  6. data/.idea/modules.xml +8 -0
  7. data/.idea/vcs.xml +6 -0
  8. data/.rspec +3 -0
  9. data/.rubocop.yml +93 -0
  10. data/.ruby-gemset +1 -0
  11. data/.ruby-version +1 -0
  12. data/MIT-LICENSE +20 -0
  13. data/README.md +102 -0
  14. data/Rakefile +11 -0
  15. data/lib/bidi2pdf-rails.rb +4 -0
  16. data/lib/bidi2pdf_rails/browser_console_log_subscriber.rb +24 -0
  17. data/lib/bidi2pdf_rails/chromedriver_manager_singleton.rb +69 -0
  18. data/lib/bidi2pdf_rails/main_log_subscriber.rb +33 -0
  19. data/lib/bidi2pdf_rails/network_log_subscriber.rb +20 -0
  20. data/lib/bidi2pdf_rails/railtie.rb +44 -0
  21. data/lib/bidi2pdf_rails/services/html_renderer.rb +33 -0
  22. data/lib/bidi2pdf_rails/services/html_to_pdf_converter.rb +28 -0
  23. data/lib/bidi2pdf_rails/services/pdf_browser_session.rb +39 -0
  24. data/lib/bidi2pdf_rails/services/pdf_renderer.rb +81 -0
  25. data/lib/bidi2pdf_rails/services/url_to_pdf_converter.rb +82 -0
  26. data/lib/bidi2pdf_rails/version.rb +3 -0
  27. data/lib/bidi2pdf_rails.rb +141 -0
  28. data/lib/generators/bidi2pdf_rails/USAGE +8 -0
  29. data/lib/generators/bidi2pdf_rails/initializer_generator.rb +74 -0
  30. data/lib/generators/bidi2pdf_rails/templates/bidi2pdf_rails.rb.tt +121 -0
  31. data/spec/bidi2pdf_rails/bidi2pdf_rails_spec.rb +9 -0
  32. data/spec/dummy/Rakefile +6 -0
  33. data/spec/dummy/app/assets/images/img.jpg +0 -0
  34. data/spec/dummy/app/assets/javascripts/paged.polyfill-4.3.js +33251 -0
  35. data/spec/dummy/app/assets/stylesheets/application.css +1 -0
  36. data/spec/dummy/app/assets/stylesheets/pdf.css +121 -0
  37. data/spec/dummy/app/assets/stylesheets/reset.css +449 -0
  38. data/spec/dummy/app/assets/stylesheets/screen.css +281 -0
  39. data/spec/dummy/app/controllers/application_controller.rb +4 -0
  40. data/spec/dummy/app/controllers/reports_controller.rb +12 -0
  41. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  42. data/spec/dummy/app/helpers/reports_helper.rb +2 -0
  43. data/spec/dummy/app/views/layouts/application.html.erb +67 -0
  44. data/spec/dummy/app/views/layouts/pdf.html.erb +67 -0
  45. data/spec/dummy/app/views/pwa/manifest.json.erb +22 -0
  46. data/spec/dummy/app/views/pwa/service-worker.js +26 -0
  47. data/spec/dummy/app/views/reports/show.html.erb +153 -0
  48. data/spec/dummy/bin/rails +4 -0
  49. data/spec/dummy/bin/rake +4 -0
  50. data/spec/dummy/bin/setup +29 -0
  51. data/spec/dummy/config/application.rb +40 -0
  52. data/spec/dummy/config/boot.rb +5 -0
  53. data/spec/dummy/config/environment.rb +5 -0
  54. data/spec/dummy/config/environments/development.rb +57 -0
  55. data/spec/dummy/config/environments/production.rb +73 -0
  56. data/spec/dummy/config/environments/test.rb +51 -0
  57. data/spec/dummy/config/initializers/bidi2pdf_rails.rb +68 -0
  58. data/spec/dummy/config/initializers/content_security_policy.rb +25 -0
  59. data/spec/dummy/config/initializers/cors.rb +9 -0
  60. data/spec/dummy/config/initializers/filter_parameter_logging.rb +8 -0
  61. data/spec/dummy/config/initializers/inflections.rb +16 -0
  62. data/spec/dummy/config/initializers/permissions_policy.rb +13 -0
  63. data/spec/dummy/config/locales/en.yml +31 -0
  64. data/spec/dummy/config/puma.rb +34 -0
  65. data/spec/dummy/config/routes.rb +18 -0
  66. data/spec/dummy/config.ru +6 -0
  67. data/spec/dummy/log/development.log +12781 -0
  68. data/spec/dummy/public/404.html +67 -0
  69. data/spec/dummy/public/406-unsupported-browser.html +66 -0
  70. data/spec/dummy/public/422.html +67 -0
  71. data/spec/dummy/public/500.html +66 -0
  72. data/spec/dummy/public/icon.png +0 -0
  73. data/spec/dummy/public/icon.svg +3 -0
  74. data/spec/dummy/spec/helpers/reports_helper_spec.rb +15 -0
  75. data/spec/dummy/spec/requests/reports_spec.rb +10 -0
  76. data/spec/dummy/spec/views/reports/show.html.erb_spec.rb +5 -0
  77. data/spec/dummy/storage/test.sqlite3 +0 -0
  78. data/spec/dummy/tmp/README.md +69 -0
  79. data/spec/dummy/tmp/local_secret.txt +1 -0
  80. data/spec/dummy/tmp/pids/server.pid +1 -0
  81. data/spec/dummy/tmp/restart.txt +0 -0
  82. data/spec/generator/bidie2pdf_rails_initializer_generator_spec.rb +5 -0
  83. data/spec/generator/initializer_generator_spec.rb +5 -0
  84. data/spec/rails_helper.rb +60 -0
  85. data/spec/requests/reports_spec.rb +17 -0
  86. data/spec/spec_helper.rb +94 -0
  87. data/tasks/bidi2pdf_rails_tasks.rake +4 -0
  88. metadata +310 -0
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Your browser is not supported (406)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/406-unsupported-browser.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>Your browser is not supported.</h1>
62
+ <p>Please upgrade your browser to continue.</p>
63
+ </div>
64
+ </div>
65
+ </body>
66
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
Binary file
@@ -0,0 +1,3 @@
1
+ <svg width="100" height="100" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="100%" height="100%" fill="red"/>
3
+ </svg>
@@ -0,0 +1,15 @@
1
+ require 'rails_helper'
2
+
3
+ # Specs in this file have access to a helper object that includes
4
+ # the ReportsHelper. For example:
5
+ #
6
+ # describe ReportsHelper do
7
+ # describe "string concat" do
8
+ # it "concats two strings with spaces" do
9
+ # expect(helper.concat_strings("this","that")).to eq("this that")
10
+ # end
11
+ # end
12
+ # end
13
+ RSpec.describe ReportsHelper, type: :helper do
14
+ pending "add some examples to (or delete) #{__FILE__}"
15
+ end
@@ -0,0 +1,10 @@
1
+ require 'rails_helper'
2
+
3
+ RSpec.describe "Reports", type: :request do
4
+ describe "GET /show" do
5
+ it "returns http success" do
6
+ get "/reports/show"
7
+ expect(response).to have_http_status(:success)
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,5 @@
1
+ require 'rails_helper'
2
+
3
+ RSpec.describe "reports/show.html.erb", type: :view do
4
+ pending "add some examples to (or delete) #{__FILE__}"
5
+ end
Binary file
@@ -0,0 +1,69 @@
1
+
2
+ # 📄 Bidi2pdf::Rails
3
+
4
+ **Bidi2pdf::Rails** is the official Rails integration for [Bidi2pdf](https://github.com/dieter-medium/bidi2pdf) – a modern, browser-based solution for converting HTML to high-quality PDFs.
5
+ It leverages headless browsing and offers a simple, flexible interface for PDF generation directly from your Rails application.
6
+
7
+ > **⚠️ Note:** This project is currently **under development** and **not yet recommended for production use**.
8
+
9
+ ---
10
+
11
+ ## 🚀 Why Bidi2pdf::Rails?
12
+
13
+ - Utilizes modern browser technologies for accurate rendering (similar to `grover` or `wicked_pdf`)
14
+ - Easy to integrate into existing Rails projects
15
+ - Configurable options: URL, output path, rendering settings
16
+
17
+ ---
18
+
19
+ ## 🔧 Installation
20
+
21
+ Add the following lines to your `Gemfile`:
22
+
23
+ ```ruby
24
+ gem "bidi2pdf-rails"
25
+ # As long as the gem is not published, use:
26
+ gem "bidi2pdf-rails", github: "dieter-medium/bidi2pdf", branch: "main"
27
+ gem "bidi2pdf", github: "dieter-medium/bidi2pdf", branch: "main"
28
+ ```
29
+
30
+ Then install the dependencies:
31
+
32
+ ```bash
33
+ bundle
34
+ ```
35
+
36
+ Generate the initializer:
37
+
38
+ ```bash
39
+ bin/rails generate bidi2pdf_rails:initializer
40
+ ```
41
+
42
+ Alternatively, install it manually:
43
+
44
+ ```bash
45
+ gem install bidi2pdf-rails
46
+ ```
47
+
48
+ ---
49
+
50
+ ## 🧪 Example & Getting Started
51
+
52
+ You can find a full example inside the [`spec/dummy`](spec/dummy) directory of this repository.
53
+ This demonstrates how to use `Bidi2pdf::Rails` in a realistic mini Rails application setup.
54
+
55
+ ---
56
+
57
+ ## 🙌 Contributing
58
+
59
+ Want to contribute?
60
+ Pull requests, bug reports, and ideas are warmly welcome!
61
+
62
+ *Contribution guidelines will be added soon.*
63
+
64
+ ---
65
+
66
+ ## 📄 License
67
+
68
+ This gem is open-source and available under the terms of the [MIT License](https://opensource.org/licenses/MIT).
69
+ Free to use – with responsibility.
@@ -0,0 +1 @@
1
+ 89676a89d5e237061bb886a6f8ba191a092d1b57798dbf6ae7367c8365d213134db2bd6a3c6d30703efe8ad47da817449105f2c2c8cfbc69ca9bcf684ec50040
@@ -0,0 +1 @@
1
+ 45957
File without changes
@@ -0,0 +1,5 @@
1
+ require 'rails_helper'
2
+
3
+ RSpec.describe "InitializerGenerator", type: :generator do
4
+ pending "add some scenarios (or delete) #{__FILE__}"
5
+ end
@@ -0,0 +1,5 @@
1
+ require 'rails_helper'
2
+
3
+ RSpec.describe "InitializerGenerator", type: :generator do
4
+ pending "add some scenarios (or delete) #{__FILE__}"
5
+ end
@@ -0,0 +1,60 @@
1
+ # This file is copied to spec/ when you run 'rails generate rspec:install'
2
+ require './spec_helper'
3
+
4
+ ENV['RAILS_ENV'] ||= 'test'
5
+ require_relative './dummy/config/environment'
6
+ # Prevent database truncation if the environment is production
7
+ abort("The Rails environment is running in production mode!") if Rails.env.production?
8
+ require 'rspec/rails'
9
+ # Add additional requires below this line. Rails is not loaded until this point!
10
+
11
+ require "bidi2pdf_rails"
12
+
13
+ # Requires supporting ruby files with custom matchers and macros, etc, in
14
+ # spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
15
+ # run as spec files by default. This means that files in spec/support that end
16
+ # in _spec.rb will both be required and run as specs, causing the specs to be
17
+ # run twice. It is recommended that you do not name files matching this glob to
18
+ # end with _spec.rb. You can configure this pattern with the --pattern
19
+ # option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
20
+ #
21
+ # The following line is provided for convenience purposes. It has the downside
22
+ # of increasing the boot-up time by auto-requiring all files in the support
23
+ # directory. Alternatively, in the individual `*_spec.rb` files, manually
24
+ # require only the support files necessary.
25
+ #
26
+ # Rails.root.glob('spec/support/**/*.rb').sort_by(&:to_s).each { |f| require f }
27
+
28
+ RSpec.configure do |config|
29
+ # Remove this line to enable support for ActiveRecord
30
+ config.use_active_record = false
31
+
32
+ # If you enable ActiveRecord support you should uncomment these lines,
33
+ # note if you'd prefer not to run each example within a transaction, you
34
+ # should set use_transactional_fixtures to false.
35
+ #
36
+ # config.fixture_path = Rails.root.join('spec/fixtures')
37
+ # config.use_transactional_fixtures = true
38
+
39
+ # RSpec Rails uses metadata to mix in different behaviours to your tests,
40
+ # for example enabling you to call `get` and `post` in request specs. e.g.:
41
+ #
42
+ # RSpec.describe UsersController, type: :request do
43
+ # # ...
44
+ # end
45
+ #
46
+ # The different available types are documented in the features, such as in
47
+ # https://rspec.info/features/7-1/rspec-rails
48
+ #
49
+ # You can also this infer these behaviours automatically by location, e.g.
50
+ # /spec/models would pull in the same behaviour as `type: :model` but this
51
+ # behaviour is considered legacy and will be removed in a future version.
52
+ #
53
+ # To enable this behaviour uncomment the line below.
54
+ # config.infer_spec_type_from_file_location!
55
+
56
+ # Filter lines from Rails gems in backtraces.
57
+ config.filter_rails_from_backtrace!
58
+ # arbitrary gems may also be filtered via:
59
+ # config.filter_gems_from_backtrace("gem name")
60
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative '../rails_helper'
4
+
5
+ RSpec.describe "Reports", type: :request do
6
+ describe "GET /reports/:id.pdf" do
7
+ it "responds with PDF content" do
8
+ get "/reports/1.pdf"
9
+
10
+ expect(response).to have_http_status(:ok)
11
+ # expect(response.content_type).to eq("application/pdf")
12
+
13
+ # Optional: make sure it returns *some* PDF-ish data
14
+ # expect(response.body[0..3]).to eq("%PDF") # all PDFs start with %PDF
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,94 @@
1
+ # This file was generated by the `rails generate rspec:install` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
4
+ # this file to always be loaded, without a need to explicitly require it in any
5
+ # files.
6
+ #
7
+ # Given that it is always loaded, you are encouraged to keep this file as
8
+ # light-weight as possible. Requiring heavyweight dependencies from this file
9
+ # will add to the boot time of your test suite on EVERY test run, even for an
10
+ # individual file that may not need all of that loaded. Instead, consider making
11
+ # a separate helper file that requires the additional dependencies and performs
12
+ # the additional setup, and require it from the spec files that actually need
13
+ # it.
14
+ #
15
+ # See https://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
16
+ RSpec.configure do |config|
17
+ # rspec-expectations config goes here. You can use an alternate
18
+ # assertion/expectation library such as wrong or the stdlib/minitest
19
+ # assertions if you prefer.
20
+ config.expect_with :rspec do |expectations|
21
+ # This option will default to `true` in RSpec 4. It makes the `description`
22
+ # and `failure_message` of custom matchers include text for helper methods
23
+ # defined using `chain`, e.g.:
24
+ # be_bigger_than(2).and_smaller_than(4).description
25
+ # # => "be bigger than 2 and smaller than 4"
26
+ # ...rather than:
27
+ # # => "be bigger than 2"
28
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
29
+ end
30
+
31
+ # rspec-mocks config goes here. You can use an alternate test double
32
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
33
+ config.mock_with :rspec do |mocks|
34
+ # Prevents you from mocking or stubbing a method that does not exist on
35
+ # a real object. This is generally recommended, and will default to
36
+ # `true` in RSpec 4.
37
+ mocks.verify_partial_doubles = true
38
+ end
39
+
40
+ # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
41
+ # have no way to turn it off -- the option exists only for backwards
42
+ # compatibility in RSpec 3). It causes shared context metadata to be
43
+ # inherited by the metadata hash of host groups and examples, rather than
44
+ # triggering implicit auto-inclusion in groups with matching metadata.
45
+ config.shared_context_metadata_behavior = :apply_to_host_groups
46
+
47
+ # The settings below are suggested to provide a good initial experience
48
+ # with RSpec, but feel free to customize to your heart's content.
49
+ =begin
50
+ # This allows you to limit a spec run to individual examples or groups
51
+ # you care about by tagging them with `:focus` metadata. When nothing
52
+ # is tagged with `:focus`, all examples get run. RSpec also provides
53
+ # aliases for `it`, `describe`, and `context` that include `:focus`
54
+ # metadata: `fit`, `fdescribe` and `fcontext`, respectively.
55
+ config.filter_run_when_matching :focus
56
+
57
+ # Allows RSpec to persist some state between runs in order to support
58
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
59
+ # you configure your source control system to ignore this file.
60
+ config.example_status_persistence_file_path = "spec/examples.txt"
61
+
62
+ # Limits the available syntax to the non-monkey patched syntax that is
63
+ # recommended. For more details, see:
64
+ # https://rspec.info/features/3-12/rspec-core/configuration/zero-monkey-patching-mode/
65
+ config.disable_monkey_patching!
66
+
67
+ # Many RSpec users commonly either run the entire suite or an individual
68
+ # file, and it's useful to allow more verbose output when running an
69
+ # individual spec file.
70
+ if config.files_to_run.one?
71
+ # Use the documentation formatter for detailed output,
72
+ # unless a formatter has already been configured
73
+ # (e.g. via a command-line flag).
74
+ config.default_formatter = "doc"
75
+ end
76
+
77
+ # Print the 10 slowest examples and example groups at the
78
+ # end of the spec run, to help surface which specs are running
79
+ # particularly slow.
80
+ config.profile_examples = 10
81
+
82
+ # Run specs in random order to surface order dependencies. If you find an
83
+ # order dependency and want to debug it, you can fix the order by providing
84
+ # the seed, which is printed after each run.
85
+ # --seed 1234
86
+ config.order = :random
87
+
88
+ # Seed global randomization in this process using the `--seed` CLI option.
89
+ # Setting this allows you to use `--seed` to deterministically reproduce
90
+ # test failures related to randomization by passing the same `--seed` value
91
+ # as the one that triggered the failure.
92
+ Kernel.srand config.seed
93
+ =end
94
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :bidi2pdf_rails do
3
+ # # Task goes here
4
+ # end