Sha256: e7beb7760a64b7e315680883703d5c607ea6f1d2410238b708c49246ce99f518

Contents?: true

Size: 494 Bytes

Versions: 7

Compression:

Stored size: 494 Bytes

Contents

# frozen_string_literal: true

$LOAD_PATH.unshift File.expand_path("../lib", __dir__)
require "breezy_pdf_lite"

html = File.read(File.expand_path("ex.html", __dir__))

BreezyPDFLite.setup do |config|
  config.secret_api_key = ENV["BREEZYPDF_SECRET_API_KEY"]
  config.base_url = ENV.fetch("BREEZYPDF_BASE_URL", "http://localhost:5001")
  config.middleware_path_matchers = [/as-pdf.pdf/]
end

use BreezyPDFLite::Middleware
run(proc { |_env| ["200", { "Content-Type" => "text/html" }, [html]] })

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
breezy_pdf_lite-0.1.1 example/config.ru
breezy_pdf_lite-0.1.0 example/config.ru
breezy_pdf_lite-0.0.7 example/config.ru
breezy_pdf_lite-0.0.6 example/config.ru
breezy_pdf_lite-0.0.4 example/config.ru
breezy_pdf_lite-0.0.3 example/config.ru
breezy_pdf_lite-0.0.2 example/config.ru