forked from excid3/ferrum_pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathferrum_pdf.gemspec
More file actions
23 lines (19 loc) · 907 Bytes
/
ferrum_pdf.gemspec
File metadata and controls
23 lines (19 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require_relative "lib/ferrum_pdf/version"
Gem::Specification.new do |spec|
spec.name = "ferrum_pdf"
spec.version = FerrumPdf::VERSION
spec.authors = [ "Chris Oliver" ]
spec.email = [ "excid3@gmail.com" ]
spec.homepage = "https://github.com/excid3/ferrum_pdf"
spec.summary = "PDFs & screenshots for Rails using Ferrum & headless Chrome"
spec.description = "Export PDFs & screenshots from HTML in Rails using Ferrum & headless Chrome"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = spec.homepage + "/blob/main/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "rails", ">= 6.0.0"
spec.add_dependency "ferrum", "~> 0.15"
end