-
Notifications
You must be signed in to change notification settings - Fork 32
/
foreman_rh_cloud.gemspec
29 lines (24 loc) · 1.07 KB
/
foreman_rh_cloud.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
require File.expand_path('lib/foreman_rh_cloud/version', __dir__)
Gem::Specification.new do |s|
s.name = 'foreman_rh_cloud'
s.version = ForemanRhCloud::VERSION
s.license = 'GPL-3.0'
s.authors = ['Foreman Red Hat Cloud team']
s.email = ['[email protected], [email protected]']
s.homepage = 'https://github.com/theforeman/foreman_rh_cloud'
s.summary = 'Summary of ForemanRhCloud.'
# also update locale/gemspec.rb
s.description = 'Foreman plugin that process & upload data to Red Hat Cloud'
s.files = Dir['{app,config,db,lib,locale,webpack}/**/*'] +
['LICENSE', 'Rakefile', 'README.md'] +
['package.json']
s.files -= Dir['**/*.orig']
s.test_files = Dir['test/**/*']
s.test_files -= Dir['test/**/*.orig']
s.required_ruby_version = '>= 2.7', '< 4'
s.add_dependency 'foreman_ansible', '>= 15.0.0'
s.add_dependency 'foreman-tasks', '>= 10.0.0'
s.add_runtime_dependency 'katello', '>= 4.14.0.rc1.1'
s.add_development_dependency 'rdoc'
s.add_development_dependency 'theforeman-rubocop', '~> 0.1.0'
end