├── .github └── FUNDING.yml ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.md ├── Rakefile ├── bin └── test ├── docs ├── report_1.png ├── report_1_thumb.png ├── report_2.png ├── report_2_thumb.png ├── report_3a.png ├── report_3a_thumb.png ├── report_3b.png ├── report_3b_thumb.png ├── report_3c.png ├── report_3c_thumb.png ├── report_4.png └── report_4_thumb.png ├── lib ├── generators │ └── rails_pdf │ │ ├── USAGE │ │ ├── rails_pdf_generator.rb │ │ └── templates │ │ ├── basic_invoice │ │ ├── images │ │ │ └── logo-pdf.jpg │ │ ├── invoice.pug.erb │ │ ├── javascripts │ │ │ └── Chart.bundle.min.js │ │ └── stylesheets │ │ │ └── invoice.scss │ │ ├── chart1 │ │ └── chart.pug.erb │ │ ├── layouts │ │ └── application.pug.erb │ │ ├── mixins │ │ └── mixin.pug │ │ ├── new │ │ └── file.pug.erb │ │ ├── products │ │ ├── index.pug.erb │ │ └── stylesheets │ │ │ └── template.css │ │ ├── shared │ │ ├── images │ │ │ └── rails_pdf.png │ │ ├── javascripts │ │ │ └── Chart.bundle.min.js │ │ └── stylesheets │ │ │ ├── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.print.css │ │ │ ├── font-awesome │ │ │ ├── style.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ │ └── foundation │ │ │ └── foundation.min.css │ │ └── simple_invoice │ │ ├── invoice.pug.erb │ │ └── stylesheets │ │ └── invoice.scss ├── rails_pdf.rb ├── rails_pdf │ ├── railtie.rb │ ├── renderer.rb │ └── version.rb └── tasks │ └── rails_pdf_tasks.rake ├── rails_pdf.gemspec └── test ├── dummy ├── .ruby-version ├── Rakefile ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ ├── .keep │ │ │ └── rails.png │ │ ├── javascripts │ │ │ ├── application.js │ │ │ ├── cable.js │ │ │ ├── channels │ │ │ │ └── .keep │ │ │ ├── home.js │ │ │ └── projects.js │ │ └── stylesheets │ │ │ ├── application.css │ │ │ ├── home.css │ │ │ ├── projects.css │ │ │ └── scaffold.css │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── home_controller.rb │ │ └── projects_controller.rb │ ├── helpers │ │ ├── application_helper.rb │ │ ├── home_helper.rb │ │ └── projects_helper.rb │ ├── jobs │ │ └── application_job.rb │ ├── mailers │ │ └── application_mailer.rb │ ├── models │ │ ├── application_record.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── project.rb │ │ └── user.rb │ ├── pdf │ │ ├── index │ │ │ ├── index.pug.erb │ │ │ └── stylesheets │ │ │ │ └── template.css │ │ ├── layouts │ │ │ └── application.pug.erb │ │ ├── mixins │ │ │ └── mixin.pug │ │ ├── report │ │ │ ├── chart.pug.erb │ │ │ ├── invoice.pug.erb │ │ │ └── stylesheets │ │ │ │ └── invoice.scss │ │ ├── report1 │ │ │ ├── images │ │ │ │ └── logo-pdf.jpg │ │ │ ├── invoice.pug.erb │ │ │ ├── javascripts │ │ │ │ └── Chart.bundle.min.js │ │ │ └── stylesheets │ │ │ │ └── invoice.scss │ │ ├── report2 │ │ │ ├── invoice.pug.erb │ │ │ └── stylesheets │ │ │ │ └── invoice.scss │ │ ├── report3 │ │ │ ├── invoice.pug.erb │ │ │ └── stylesheets │ │ │ │ └── invoice.scss │ │ └── shared │ │ │ ├── images │ │ │ └── rails_pdf.png │ │ │ ├── javascripts │ │ │ └── Chart.bundle.min.js │ │ │ └── stylesheets │ │ │ ├── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.print.css │ │ │ ├── font-awesome │ │ │ ├── style.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ │ └── foundation │ │ │ └── foundation.min.css │ └── views │ │ ├── home │ │ └── index.html.erb │ │ ├── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb │ │ └── projects │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ ├── update │ └── yarn ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── application_controller_renderer.rb │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── content_security_policy.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ ├── spring.rb │ └── storage.yml ├── db │ ├── migrate │ │ ├── 20181128181555_create_users.rb │ │ ├── 20200204093648_create_active_storage_tables.active_storage.rb │ │ └── 20200204093718_create_projects.rb │ └── schema.rb ├── lib │ └── assets │ │ └── .keep ├── log │ └── .keep ├── package.json └── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ └── favicon.ico ├── rails_pdf_test.rb └── test_helper.rb /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: igorkasyanchuk 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/bin/test -------------------------------------------------------------------------------- /docs/report_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/docs/report_1.png -------------------------------------------------------------------------------- /docs/report_1_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/docs/report_1_thumb.png -------------------------------------------------------------------------------- /docs/report_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/docs/report_2.png -------------------------------------------------------------------------------- /docs/report_2_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/docs/report_2_thumb.png -------------------------------------------------------------------------------- /docs/report_3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/docs/report_3a.png -------------------------------------------------------------------------------- /docs/report_3a_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/docs/report_3a_thumb.png -------------------------------------------------------------------------------- /docs/report_3b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/docs/report_3b.png -------------------------------------------------------------------------------- /docs/report_3b_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/docs/report_3b_thumb.png -------------------------------------------------------------------------------- /docs/report_3c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/docs/report_3c.png -------------------------------------------------------------------------------- /docs/report_3c_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/docs/report_3c_thumb.png -------------------------------------------------------------------------------- /docs/report_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/docs/report_4.png -------------------------------------------------------------------------------- /docs/report_4_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/docs/report_4_thumb.png -------------------------------------------------------------------------------- /lib/generators/rails_pdf/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/USAGE -------------------------------------------------------------------------------- /lib/generators/rails_pdf/rails_pdf_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/rails_pdf_generator.rb -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/basic_invoice/images/logo-pdf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/basic_invoice/images/logo-pdf.jpg -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/basic_invoice/invoice.pug.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/basic_invoice/invoice.pug.erb -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/basic_invoice/javascripts/Chart.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/basic_invoice/javascripts/Chart.bundle.min.js -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/basic_invoice/stylesheets/invoice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/basic_invoice/stylesheets/invoice.scss -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/chart1/chart.pug.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/chart1/chart.pug.erb -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/layouts/application.pug.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/mixins/mixin.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/mixins/mixin.pug -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/new/file.pug.erb: -------------------------------------------------------------------------------- 1 | h1 Rails PDF -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/products/index.pug.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/products/index.pug.erb -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/products/stylesheets/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/products/stylesheets/template.css -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/images/rails_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/images/rails_pdf.png -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/javascripts/Chart.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/javascripts/Chart.bundle.min.js -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/bootstrap/bootstrap.print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/bootstrap/bootstrap.print.css -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/style.css -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/font-awesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/shared/stylesheets/foundation/foundation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/shared/stylesheets/foundation/foundation.min.css -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/simple_invoice/invoice.pug.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/simple_invoice/invoice.pug.erb -------------------------------------------------------------------------------- /lib/generators/rails_pdf/templates/simple_invoice/stylesheets/invoice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/generators/rails_pdf/templates/simple_invoice/stylesheets/invoice.scss -------------------------------------------------------------------------------- /lib/rails_pdf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/rails_pdf.rb -------------------------------------------------------------------------------- /lib/rails_pdf/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/rails_pdf/railtie.rb -------------------------------------------------------------------------------- /lib/rails_pdf/renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/rails_pdf/renderer.rb -------------------------------------------------------------------------------- /lib/rails_pdf/version.rb: -------------------------------------------------------------------------------- 1 | module RailsPDF 2 | VERSION = '0.2.1' 3 | end -------------------------------------------------------------------------------- /lib/tasks/rails_pdf_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/lib/tasks/rails_pdf_tasks.rake -------------------------------------------------------------------------------- /rails_pdf.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/rails_pdf.gemspec -------------------------------------------------------------------------------- /test/dummy/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.5.1 -------------------------------------------------------------------------------- /test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/Rakefile -------------------------------------------------------------------------------- /test/dummy/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/assets/config/manifest.js -------------------------------------------------------------------------------- /test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/assets/images/rails.png -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/assets/javascripts/home.js -------------------------------------------------------------------------------- /test/dummy/app/assets/javascripts/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/assets/javascripts/projects.js -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/assets/stylesheets/home.css -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/projects.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/assets/stylesheets/projects.css -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/scaffold.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/assets/stylesheets/scaffold.css -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/projects_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/controllers/projects_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/helpers/projects_helper.rb: -------------------------------------------------------------------------------- 1 | module ProjectsHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /test/dummy/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/models/application_record.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/project.rb: -------------------------------------------------------------------------------- 1 | class Project < ApplicationRecord 2 | has_one_attached :logo 3 | end 4 | -------------------------------------------------------------------------------- /test/dummy/app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/models/user.rb -------------------------------------------------------------------------------- /test/dummy/app/pdf/index/index.pug.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/index/index.pug.erb -------------------------------------------------------------------------------- /test/dummy/app/pdf/index/stylesheets/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/index/stylesheets/template.css -------------------------------------------------------------------------------- /test/dummy/app/pdf/layouts/application.pug.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> -------------------------------------------------------------------------------- /test/dummy/app/pdf/mixins/mixin.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/mixins/mixin.pug -------------------------------------------------------------------------------- /test/dummy/app/pdf/report/chart.pug.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/report/chart.pug.erb -------------------------------------------------------------------------------- /test/dummy/app/pdf/report/invoice.pug.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/report/invoice.pug.erb -------------------------------------------------------------------------------- /test/dummy/app/pdf/report/stylesheets/invoice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/report/stylesheets/invoice.scss -------------------------------------------------------------------------------- /test/dummy/app/pdf/report1/images/logo-pdf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/report1/images/logo-pdf.jpg -------------------------------------------------------------------------------- /test/dummy/app/pdf/report1/invoice.pug.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/report1/invoice.pug.erb -------------------------------------------------------------------------------- /test/dummy/app/pdf/report1/javascripts/Chart.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/report1/javascripts/Chart.bundle.min.js -------------------------------------------------------------------------------- /test/dummy/app/pdf/report1/stylesheets/invoice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/report1/stylesheets/invoice.scss -------------------------------------------------------------------------------- /test/dummy/app/pdf/report2/invoice.pug.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/report2/invoice.pug.erb -------------------------------------------------------------------------------- /test/dummy/app/pdf/report2/stylesheets/invoice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/report2/stylesheets/invoice.scss -------------------------------------------------------------------------------- /test/dummy/app/pdf/report3/invoice.pug.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/report3/invoice.pug.erb -------------------------------------------------------------------------------- /test/dummy/app/pdf/report3/stylesheets/invoice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/report3/stylesheets/invoice.scss -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/images/rails_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/images/rails_pdf.png -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/javascripts/Chart.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/javascripts/Chart.bundle.min.js -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/bootstrap/bootstrap.print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/bootstrap/bootstrap.print.css -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/font-awesome/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/font-awesome/style.css -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/font-awesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /test/dummy/app/pdf/shared/stylesheets/foundation/foundation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/pdf/shared/stylesheets/foundation/foundation.min.css -------------------------------------------------------------------------------- /test/dummy/app/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/views/home/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /test/dummy/app/views/projects/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/views/projects/_form.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/views/projects/edit.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/views/projects/index.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/views/projects/new.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/projects/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/app/views/projects/show.html.erb -------------------------------------------------------------------------------- /test/dummy/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/bin/bundle -------------------------------------------------------------------------------- /test/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/bin/rails -------------------------------------------------------------------------------- /test/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/bin/rake -------------------------------------------------------------------------------- /test/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/bin/setup -------------------------------------------------------------------------------- /test/dummy/bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/bin/update -------------------------------------------------------------------------------- /test/dummy/bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/bin/yarn -------------------------------------------------------------------------------- /test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config.ru -------------------------------------------------------------------------------- /test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/application.rb -------------------------------------------------------------------------------- /test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /test/dummy/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/cable.yml -------------------------------------------------------------------------------- /test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/database.yml -------------------------------------------------------------------------------- /test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/initializers/assets.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /test/dummy/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/puma.rb -------------------------------------------------------------------------------- /test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /test/dummy/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/spring.rb -------------------------------------------------------------------------------- /test/dummy/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/config/storage.yml -------------------------------------------------------------------------------- /test/dummy/db/migrate/20181128181555_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/db/migrate/20181128181555_create_users.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20200204093648_create_active_storage_tables.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/db/migrate/20200204093648_create_active_storage_tables.active_storage.rb -------------------------------------------------------------------------------- /test/dummy/db/migrate/20200204093718_create_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/db/migrate/20200204093718_create_projects.rb -------------------------------------------------------------------------------- /test/dummy/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/db/schema.rb -------------------------------------------------------------------------------- /test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/package.json -------------------------------------------------------------------------------- /test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/public/404.html -------------------------------------------------------------------------------- /test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/public/422.html -------------------------------------------------------------------------------- /test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/dummy/public/500.html -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/rails_pdf_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/rails_pdf_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igorkasyanchuk/rails_pdf/HEAD/test/test_helper.rb --------------------------------------------------------------------------------