bidi2pdf-rails 0.0.1.pre.alpha

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 (81) hide show
  1. checksums.yaml +7 -0
  2. data/.idea/.gitignore +8 -0
  3. data/.idea/bidi2pdf-rails.iml +411 -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 +90 -0
  10. data/.ruby-gemset +1 -0
  11. data/.ruby-version +1 -0
  12. data/MIT-LICENSE +20 -0
  13. data/README.md +75 -0
  14. data/Rakefile +11 -0
  15. data/lib/bidi2pdf-rails.rb +4 -0
  16. data/lib/bidi2pdf_rails/chromedriver_manager_singleton.rb +69 -0
  17. data/lib/bidi2pdf_rails/log_subscriber.rb +13 -0
  18. data/lib/bidi2pdf_rails/railtie.rb +79 -0
  19. data/lib/bidi2pdf_rails/version.rb +3 -0
  20. data/lib/bidi2pdf_rails.rb +87 -0
  21. data/lib/generators/bidi2pdf_rails/USAGE +8 -0
  22. data/lib/generators/bidi2pdf_rails/initializer_generator.rb +73 -0
  23. data/lib/generators/bidi2pdf_rails/templates/bidi2pdf_rails.rb.tt +89 -0
  24. data/spec/bidi2pdf_rails/bidi2pdf_rails_spec.rb +9 -0
  25. data/spec/dummy/Rakefile +6 -0
  26. data/spec/dummy/app/assets/images/img.jpg +0 -0
  27. data/spec/dummy/app/assets/javascripts/paged.polyfill-4.3.js +33251 -0
  28. data/spec/dummy/app/assets/stylesheets/application.css +1 -0
  29. data/spec/dummy/app/assets/stylesheets/pdf.css +121 -0
  30. data/spec/dummy/app/assets/stylesheets/reset.css +449 -0
  31. data/spec/dummy/app/assets/stylesheets/screen.css +281 -0
  32. data/spec/dummy/app/controllers/application_controller.rb +4 -0
  33. data/spec/dummy/app/controllers/reports_controller.rb +8 -0
  34. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  35. data/spec/dummy/app/helpers/reports_helper.rb +2 -0
  36. data/spec/dummy/app/views/layouts/application.html.erb +67 -0
  37. data/spec/dummy/app/views/layouts/pdf.html.erb +67 -0
  38. data/spec/dummy/app/views/pwa/manifest.json.erb +22 -0
  39. data/spec/dummy/app/views/pwa/service-worker.js +26 -0
  40. data/spec/dummy/app/views/reports/show.html.erb +153 -0
  41. data/spec/dummy/bin/rails +4 -0
  42. data/spec/dummy/bin/rake +4 -0
  43. data/spec/dummy/bin/setup +29 -0
  44. data/spec/dummy/config/application.rb +40 -0
  45. data/spec/dummy/config/boot.rb +5 -0
  46. data/spec/dummy/config/environment.rb +5 -0
  47. data/spec/dummy/config/environments/development.rb +57 -0
  48. data/spec/dummy/config/environments/production.rb +73 -0
  49. data/spec/dummy/config/environments/test.rb +51 -0
  50. data/spec/dummy/config/initializers/bidi2pdf_rails.rb +64 -0
  51. data/spec/dummy/config/initializers/content_security_policy.rb +25 -0
  52. data/spec/dummy/config/initializers/cors.rb +9 -0
  53. data/spec/dummy/config/initializers/filter_parameter_logging.rb +8 -0
  54. data/spec/dummy/config/initializers/inflections.rb +16 -0
  55. data/spec/dummy/config/initializers/permissions_policy.rb +13 -0
  56. data/spec/dummy/config/locales/en.yml +31 -0
  57. data/spec/dummy/config/puma.rb +34 -0
  58. data/spec/dummy/config/routes.rb +16 -0
  59. data/spec/dummy/config.ru +6 -0
  60. data/spec/dummy/log/development.log +220 -0
  61. data/spec/dummy/public/404.html +67 -0
  62. data/spec/dummy/public/406-unsupported-browser.html +66 -0
  63. data/spec/dummy/public/422.html +67 -0
  64. data/spec/dummy/public/500.html +66 -0
  65. data/spec/dummy/public/icon.png +0 -0
  66. data/spec/dummy/public/icon.svg +3 -0
  67. data/spec/dummy/spec/helpers/reports_helper_spec.rb +15 -0
  68. data/spec/dummy/spec/requests/reports_spec.rb +10 -0
  69. data/spec/dummy/spec/views/reports/show.html.erb_spec.rb +5 -0
  70. data/spec/dummy/storage/test.sqlite3 +0 -0
  71. data/spec/dummy/tmp/README.md +69 -0
  72. data/spec/dummy/tmp/local_secret.txt +1 -0
  73. data/spec/dummy/tmp/pids/server.pid +1 -0
  74. data/spec/dummy/tmp/restart.txt +0 -0
  75. data/spec/generator/bidie2pdf_rails_initializer_generator_spec.rb +5 -0
  76. data/spec/generator/initializer_generator_spec.rb +5 -0
  77. data/spec/rails_helper.rb +60 -0
  78. data/spec/requests/reports_spec.rb +17 -0
  79. data/spec/spec_helper.rb +94 -0
  80. data/tasks/bidi2pdf_rails_tasks.rake +4 -0
  81. metadata +289 -0
@@ -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
+ 61431
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
metadata ADDED
@@ -0,0 +1,289 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bidi2pdf-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.pre.alpha
5
+ platform: ruby
6
+ authors:
7
+ - Dieter S.
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2025-04-16 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 7.2.2.1
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 8.0.3.0
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 7.2.2.1
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: 8.0.3.0
33
+ - !ruby/object:Gem::Dependency
34
+ name: bidi2pdf
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ type: :runtime
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ - !ruby/object:Gem::Dependency
48
+ name: rubocop-rake
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '0.7'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '0.7'
61
+ - !ruby/object:Gem::Dependency
62
+ name: rubocop-rspec
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '3.5'
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '3.5'
75
+ - !ruby/object:Gem::Dependency
76
+ name: rspec-rails
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - "~>"
80
+ - !ruby/object:Gem::Version
81
+ version: '7.0'
82
+ type: :development
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - "~>"
87
+ - !ruby/object:Gem::Version
88
+ version: '7.0'
89
+ - !ruby/object:Gem::Dependency
90
+ name: simplecov
91
+ requirement: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - "~>"
94
+ - !ruby/object:Gem::Version
95
+ version: '0.22'
96
+ type: :development
97
+ prerelease: false
98
+ version_requirements: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - "~>"
101
+ - !ruby/object:Gem::Version
102
+ version: '0.22'
103
+ - !ruby/object:Gem::Dependency
104
+ name: puma
105
+ requirement: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ type: :development
111
+ prerelease: false
112
+ version_requirements: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: '0'
117
+ description: 'Bidi2pdf Rails is a powerful PDF generation tool.
118
+
119
+ '
120
+ email:
121
+ - 101627195+dieter-medium@users.noreply.github.com
122
+ executables: []
123
+ extensions: []
124
+ extra_rdoc_files: []
125
+ files:
126
+ - ".idea/.gitignore"
127
+ - ".idea/bidi2pdf-rails.iml"
128
+ - ".idea/inspectionProfiles/profiles_settings.xml"
129
+ - ".idea/misc.xml"
130
+ - ".idea/modules.xml"
131
+ - ".idea/vcs.xml"
132
+ - ".rspec"
133
+ - ".rubocop.yml"
134
+ - ".ruby-gemset"
135
+ - ".ruby-version"
136
+ - MIT-LICENSE
137
+ - README.md
138
+ - Rakefile
139
+ - lib/bidi2pdf-rails.rb
140
+ - lib/bidi2pdf_rails.rb
141
+ - lib/bidi2pdf_rails/chromedriver_manager_singleton.rb
142
+ - lib/bidi2pdf_rails/log_subscriber.rb
143
+ - lib/bidi2pdf_rails/railtie.rb
144
+ - lib/bidi2pdf_rails/version.rb
145
+ - lib/generators/bidi2pdf_rails/USAGE
146
+ - lib/generators/bidi2pdf_rails/initializer_generator.rb
147
+ - lib/generators/bidi2pdf_rails/templates/bidi2pdf_rails.rb.tt
148
+ - spec/bidi2pdf_rails/bidi2pdf_rails_spec.rb
149
+ - spec/dummy/Rakefile
150
+ - spec/dummy/app/assets/images/img.jpg
151
+ - spec/dummy/app/assets/javascripts/paged.polyfill-4.3.js
152
+ - spec/dummy/app/assets/stylesheets/application.css
153
+ - spec/dummy/app/assets/stylesheets/pdf.css
154
+ - spec/dummy/app/assets/stylesheets/reset.css
155
+ - spec/dummy/app/assets/stylesheets/screen.css
156
+ - spec/dummy/app/controllers/application_controller.rb
157
+ - spec/dummy/app/controllers/reports_controller.rb
158
+ - spec/dummy/app/helpers/application_helper.rb
159
+ - spec/dummy/app/helpers/reports_helper.rb
160
+ - spec/dummy/app/views/layouts/application.html.erb
161
+ - spec/dummy/app/views/layouts/pdf.html.erb
162
+ - spec/dummy/app/views/pwa/manifest.json.erb
163
+ - spec/dummy/app/views/pwa/service-worker.js
164
+ - spec/dummy/app/views/reports/show.html.erb
165
+ - spec/dummy/bin/rails
166
+ - spec/dummy/bin/rake
167
+ - spec/dummy/bin/setup
168
+ - spec/dummy/config.ru
169
+ - spec/dummy/config/application.rb
170
+ - spec/dummy/config/boot.rb
171
+ - spec/dummy/config/environment.rb
172
+ - spec/dummy/config/environments/development.rb
173
+ - spec/dummy/config/environments/production.rb
174
+ - spec/dummy/config/environments/test.rb
175
+ - spec/dummy/config/initializers/bidi2pdf_rails.rb
176
+ - spec/dummy/config/initializers/content_security_policy.rb
177
+ - spec/dummy/config/initializers/cors.rb
178
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
179
+ - spec/dummy/config/initializers/inflections.rb
180
+ - spec/dummy/config/initializers/permissions_policy.rb
181
+ - spec/dummy/config/locales/en.yml
182
+ - spec/dummy/config/puma.rb
183
+ - spec/dummy/config/routes.rb
184
+ - spec/dummy/log/development.log
185
+ - spec/dummy/public/404.html
186
+ - spec/dummy/public/406-unsupported-browser.html
187
+ - spec/dummy/public/422.html
188
+ - spec/dummy/public/500.html
189
+ - spec/dummy/public/icon.png
190
+ - spec/dummy/public/icon.svg
191
+ - spec/dummy/spec/helpers/reports_helper_spec.rb
192
+ - spec/dummy/spec/requests/reports_spec.rb
193
+ - spec/dummy/spec/views/reports/show.html.erb_spec.rb
194
+ - spec/dummy/storage/test.sqlite3
195
+ - spec/dummy/tmp/README.md
196
+ - spec/dummy/tmp/local_secret.txt
197
+ - spec/dummy/tmp/pids/server.pid
198
+ - spec/dummy/tmp/restart.txt
199
+ - spec/generator/bidie2pdf_rails_initializer_generator_spec.rb
200
+ - spec/generator/initializer_generator_spec.rb
201
+ - spec/rails_helper.rb
202
+ - spec/requests/reports_spec.rb
203
+ - spec/spec_helper.rb
204
+ - tasks/bidi2pdf_rails_tasks.rake
205
+ homepage: https://github.com/dieter-medium/bidi2pdf
206
+ licenses:
207
+ - MIT
208
+ metadata:
209
+ allowed_push_host: https://rubygems.org
210
+ homepage_uri: https://github.com/dieter-medium/bidi2pdf
211
+ source_code_uri: https://github.com/dieter-medium/bidi2pdf
212
+ changelog_uri: https://github.com/dieter-medium/bidi2pdf/blob/master/CHANGELOG.md
213
+ rubygems_mfa_required: 'true'
214
+ post_install_message:
215
+ rdoc_options: []
216
+ require_paths:
217
+ - lib
218
+ required_ruby_version: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - ">="
221
+ - !ruby/object:Gem::Version
222
+ version: 3.3.0
223
+ required_rubygems_version: !ruby/object:Gem::Requirement
224
+ requirements:
225
+ - - ">="
226
+ - !ruby/object:Gem::Version
227
+ version: '0'
228
+ requirements: []
229
+ rubygems_version: 3.5.11
230
+ signing_key:
231
+ specification_version: 4
232
+ summary: A Ruby gem that generates PDF
233
+ test_files:
234
+ - spec/bidi2pdf_rails/bidi2pdf_rails_spec.rb
235
+ - spec/dummy/Rakefile
236
+ - spec/dummy/app/assets/images/img.jpg
237
+ - spec/dummy/app/assets/javascripts/paged.polyfill-4.3.js
238
+ - spec/dummy/app/assets/stylesheets/application.css
239
+ - spec/dummy/app/assets/stylesheets/pdf.css
240
+ - spec/dummy/app/assets/stylesheets/reset.css
241
+ - spec/dummy/app/assets/stylesheets/screen.css
242
+ - spec/dummy/app/controllers/application_controller.rb
243
+ - spec/dummy/app/controllers/reports_controller.rb
244
+ - spec/dummy/app/helpers/application_helper.rb
245
+ - spec/dummy/app/helpers/reports_helper.rb
246
+ - spec/dummy/app/views/layouts/application.html.erb
247
+ - spec/dummy/app/views/layouts/pdf.html.erb
248
+ - spec/dummy/app/views/pwa/manifest.json.erb
249
+ - spec/dummy/app/views/pwa/service-worker.js
250
+ - spec/dummy/app/views/reports/show.html.erb
251
+ - spec/dummy/bin/rails
252
+ - spec/dummy/bin/rake
253
+ - spec/dummy/bin/setup
254
+ - spec/dummy/config/application.rb
255
+ - spec/dummy/config/boot.rb
256
+ - spec/dummy/config/environment.rb
257
+ - spec/dummy/config/environments/development.rb
258
+ - spec/dummy/config/environments/production.rb
259
+ - spec/dummy/config/environments/test.rb
260
+ - spec/dummy/config/initializers/bidi2pdf_rails.rb
261
+ - spec/dummy/config/initializers/content_security_policy.rb
262
+ - spec/dummy/config/initializers/cors.rb
263
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
264
+ - spec/dummy/config/initializers/inflections.rb
265
+ - spec/dummy/config/initializers/permissions_policy.rb
266
+ - spec/dummy/config/locales/en.yml
267
+ - spec/dummy/config/puma.rb
268
+ - spec/dummy/config/routes.rb
269
+ - spec/dummy/config.ru
270
+ - spec/dummy/log/development.log
271
+ - spec/dummy/public/404.html
272
+ - spec/dummy/public/406-unsupported-browser.html
273
+ - spec/dummy/public/422.html
274
+ - spec/dummy/public/500.html
275
+ - spec/dummy/public/icon.png
276
+ - spec/dummy/public/icon.svg
277
+ - spec/dummy/spec/helpers/reports_helper_spec.rb
278
+ - spec/dummy/spec/requests/reports_spec.rb
279
+ - spec/dummy/spec/views/reports/show.html.erb_spec.rb
280
+ - spec/dummy/storage/test.sqlite3
281
+ - spec/dummy/tmp/README.md
282
+ - spec/dummy/tmp/local_secret.txt
283
+ - spec/dummy/tmp/pids/server.pid
284
+ - spec/dummy/tmp/restart.txt
285
+ - spec/generator/bidie2pdf_rails_initializer_generator_spec.rb
286
+ - spec/generator/initializer_generator_spec.rb
287
+ - spec/rails_helper.rb
288
+ - spec/requests/reports_spec.rb
289
+ - spec/spec_helper.rb