-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmq-rest-admin.gemspec
More file actions
32 lines (26 loc) · 1.21 KB
/
Copy pathmq-rest-admin.gemspec
File metadata and controls
32 lines (26 loc) · 1.21 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
32
# frozen_string_literal: true
require_relative 'lib/mq/rest/admin/version'
Gem::Specification.new do |spec|
spec.name = 'mq-rest-admin'
spec.version = MQ::REST::Admin::VERSION
spec.authors = ['W. Phillip Moore']
spec.email = ['wphillipmoore@gmail.com']
spec.summary = 'Ruby wrapper for the IBM MQ administrative REST API'
spec.description = 'Typed Ruby methods for every MQSC command exposed by the ' \
'IBM MQ 9.4 runCommandJSON REST endpoint, with automatic ' \
'attribute name translation between Ruby idioms and native ' \
'MQSC parameter names.'
spec.homepage = 'https://github.com/mq-rest-admin-project/mq-rest-admin-ruby'
spec.license = 'GPL-3.0-or-later'
spec.required_ruby_version = '>= 3.2.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir.chdir(__dir__) do
Dir['{lib}/**/*', 'LICENSE', 'README.md', 'CHANGELOG.md']
end
spec.require_paths = ['lib']
# base64 was removed from Ruby's default gems in 3.4
spec.add_dependency 'base64'
end