-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathzammad_api.gemspec
More file actions
28 lines (22 loc) · 1.12 KB
/
zammad_api.gemspec
File metadata and controls
28 lines (22 loc) · 1.12 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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'zammad_api/version'
Gem::Specification.new do |spec|
spec.name = 'zammad_api'
spec.version = ZammadAPI::VERSION.dup
spec.authors = ['Martin Edenhofer', 'Martin Gruner']
spec.email = ['support@zammad.org']
spec.summary = 'Zammad API v1.0 client.'
spec.description = 'Ruby wrapper for the Zammad API v1.0.'
spec.homepage = 'https://github.com/zammad/zammad-api-client-ruby'
spec.licenses = ['AGPL-3.0-only', 'MIT']
spec.required_ruby_version = '>= 3.0' # Same as TargetRubyVersion in .rubocop.yml.
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/zammad/zammad-api-client-ruby'
spec.metadata['changelog_uri'] = 'https://github.com/zammad/zammad-api-client-ruby/blob/master/CHANGELOG.md'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir['{lib}/**/*']
spec.require_paths = ['lib']
spec.add_dependency 'faraday', '~> 2'
end