-
Notifications
You must be signed in to change notification settings - Fork 95
/
foreman_remote_execution.gemspec
33 lines (27 loc) · 1.3 KB
/
foreman_remote_execution.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
32
33
require File.expand_path('../lib/foreman_remote_execution/version', __FILE__)
require 'date'
Gem::Specification.new do |s|
s.name = 'foreman_remote_execution'
s.version = ForemanRemoteExecution::VERSION
s.license = 'GPL-3.0'
s.date = Date.today.to_s
s.authors = ['Foreman Remote Execution team']
s.email = ['[email protected]']
s.homepage = 'https://github.com/theforeman/foreman_remote_execution'
s.summary = 'A plugin bringing remote execution to the Foreman, completing the config ' +
'management functionality with remote management functionality.'
# also update locale/gemspec.rb
s.description = 'A plugin bringing remote execution to the Foreman, completing the config ' +
'management functionality with remote management functionality.'
s.files = `git ls-files`.split("\n").reject do |file|
file.start_with?('scripts')
end
s.test_files = `git ls-files test`.split("\n")
s.extra_rdoc_files = Dir['README*', 'LICENSE']
s.required_ruby_version = '>= 2.7', '< 4'
s.add_dependency 'deface'
s.add_dependency 'dynflow', '>= 1.0.2', '< 2.0.0'
s.add_dependency 'foreman-tasks', '>= 8.3.0'
s.add_development_dependency 'factory_bot_rails', '~> 4.8.0'
s.add_development_dependency 'rdoc'
end