-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcolore-client.gemspec
31 lines (24 loc) · 1.05 KB
/
colore-client.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 File.expand_path('lib/colore/client/version', __dir__)
Gem::Specification.new do |spec|
spec.name = 'colore-client'
spec.version = Colore::Client::VERSION
spec.authors = ['Joe Blackman']
spec.email = ['j.blackman@ifad.org']
spec.description = 'Ruby client to consume Colore services'
spec.summary = 'Ruby client to consume Colore services'
spec.homepage = 'https://github.com/ifad/colore-client'
spec.license = 'MIT'
spec.files = Dir['{bin/*,lib/**/*.rb,LICENSE,README.md}']
spec.require_paths = ['lib']
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/ifad/colore-client/issues',
'homepage_uri' => 'https://github.com/ifad/colore-client',
'source_code_uri' => 'https://github.com/ifad/colore-client',
'rubygems_mfa_required' => 'true'
}
spec.required_ruby_version = '>= 3.0'
spec.add_dependency 'faraday', '>= 2.12'
spec.add_dependency 'faraday-multipart', '>= 1.1'
spec.add_dependency 'marcel', '>= 1.0'
end