forked from theforeman/foreman_ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
foreman_ansible.gemspec
25 lines (21 loc) · 950 Bytes
/
foreman_ansible.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
# frozen_string_literal: true
require File.expand_path('../lib/foreman_ansible/version', __FILE__)
require 'date'
Gem::Specification.new do |s|
s.name = 'foreman_ansible'
s.version = ForemanAnsible::VERSION
s.authors = ['Daniel Lobato Garcia']
s.email = ['elobatocs@gmail.com']
s.homepage = 'https://github.com/theforeman/foreman_ansible'
s.summary = 'Ansible integration with Foreman (theforeman.org)'
s.description = 'Ansible integration with Foreman'
s.licenses = ['GPL-3.0']
s.files = Dir['{app,config,db,lib/foreman_ansible,locale,webpack}/**/*'] +
['lib/foreman_ansible.rb', 'LICENSE', 'Rakefile', 'README.md'] +
['package.json']
s.test_files = Dir['test/**/*']
s.add_dependency 'acts_as_list', '~> 1.0.3'
s.add_dependency 'deface', '< 2.0'
s.add_dependency 'foreman_remote_execution', '>= 9.0', '< 11'
s.add_dependency 'foreman-tasks', '>= 7.0', '< 9'
end