forked from theforeman/foreman_rh_cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
foreman_rh_cloud.gemspec
29 lines (25 loc) · 1.05 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.add_dependency 'katello'
s.add_dependency 'foreman_ansible'
s.add_dependency 'foreman-tasks'
s.add_development_dependency 'rdoc'
s.add_development_dependency 'rubocop'
s.add_development_dependency 'rubocop-performance'
s.add_development_dependency 'rubocop-rails'
end