-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpdfify.gemspec
More file actions
31 lines (25 loc) · 1.26 KB
/
Copy pathpdfify.gemspec
File metadata and controls
31 lines (25 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require_relative 'lib/pdfify/version'
Gem::Specification.new do |spec|
spec.name = "pdfify-client"
spec.version = PDFify::VERSION
spec.authors = ["almokhtar"]
spec.email = ["hey@almokhtar.dev"]
spec.summary = "Ruby client for PDFify HTML-to-PDF API"
spec.description = "A simple Ruby gem to convert HTML to PDF using the PDFify API. " \
"PDFify is a DocRaptor alternative at 50% cheaper pricing."
spec.homepage = "https://github.com/almokhtarbr/pdfify-client"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.6.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/almokhtarbr/pdfify-client"
spec.metadata["changelog_uri"] = "https://github.com/almokhtarbr/pdfify-client/blob/main/CHANGELOG.md"
# Specify which files should be added to the gem when it is released.
spec.files = Dir.glob("{lib}/**/*") + %w[README.md LICENSE.txt CHANGELOG.md]
spec.require_paths = ["lib"]
# Runtime dependencies
spec.add_dependency "httparty", "~> 0.21"
# Development dependencies
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.0"
end