-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocuseal.gemspec
31 lines (26 loc) · 961 Bytes
/
docuseal.gemspec
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
# frozen_string_literal: true
require_relative 'lib/docuseal/version'
Gem::Specification.new do |spec|
spec.name = 'docuseal'
spec.version = Docuseal::VERSION
spec.authors = ['DocuSeal']
spec.email = ['support@docuseal.com']
spec.summary = 'Ruby bindings for DocuSeal API'
spec.description = 'DocuSeal is a document signing platform. This gem provides a Ruby interface to the DocuSeal API.'
spec.homepage = 'https://www.docuseal.com'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.5.0'
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/docusealco/docuseal-ruby/issues',
'homepage_uri' => 'https://www.docuseal.com',
'source_code_uri' => 'https://github.com/docusealco/docuseal-ruby',
'documentation_uri' => 'https://www.docuseal.com/docs/api?lang=ruby',
'rubygems_mfa_required' => 'true'
}
spec.files = Dir[
'lib/**/*',
'LICENSE',
'README.md'
]
spec.require_paths = ['lib']
end