-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpanda_doc.gemspec
More file actions
28 lines (23 loc) · 961 Bytes
/
panda_doc.gemspec
File metadata and controls
28 lines (23 loc) · 961 Bytes
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
# frozen_string_literal: true
require_relative "lib/panda_doc/version"
Gem::Specification.new do |spec|
spec.name = "panda_doc"
spec.version = PandaDoc::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ["Igor Pstyga"]
spec.email = ["igor.pstyga@gmail.com"]
spec.summary = %q{Ruby wrapper for PandaDoc.com API}
spec.description = spec.summary
spec.homepage = "https://github.com/opti/panda_doc"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "bin"
spec.executables = []
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 3.1"
spec.add_dependency "faraday", ">= 2.0.1", "< 3.0"
spec.add_dependency "faraday-multipart", ">= 1.0.0", "< 2.0"
spec.add_dependency "dry-configurable"
spec.add_dependency "dry-struct"
spec.add_dependency "zeitwerk"
end