1
|
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
|
2
|
|
3
|
|
4
|
require 'foreman_docker/version'
|
5
|
require 'date'
|
6
|
|
7
|
|
8
|
Gem::Specification.new do |s|
|
9
|
s.name = 'foreman_docker'
|
10
|
s.version = ForemanDocker::VERSION
|
11
|
s.date = Date.today.to_s
|
12
|
s.authors = ['Daniel Lobato, Amos Benari']
|
13
|
s.email = ['dlobatog@redhat.com, abenari@redhat.com']
|
14
|
s.homepage = 'http://github.com/theforeman/foreman-docker'
|
15
|
s.summary = 'Provision and manage Docker containers and images from Foreman'
|
16
|
s.description = 'Provision and manage Docker containers and images from Foreman.'
|
17
|
s.licenses = ['GPL-3.0']
|
18
|
|
19
|
s.files = Dir['{app,config,db,lib,locale}/**/*', 'LICENSE', 'Rakefile', 'README.md']
|
20
|
s.test_files = Dir['test/**/*', '.rubocop.yml']
|
21
|
|
22
|
s.add_dependency 'docker-api', '~> 1.18'
|
23
|
s.add_dependency 'excon', '~> 0.46'
|
24
|
s.add_dependency 'deface', '< 2.0'
|
25
|
s.add_dependency 'wicked', '~> 1.1'
|
26
|
|
27
|
s.add_development_dependency 'rubocop', '0.52.0'
|
28
|
end
|