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