1 |
9c1fa5fb
|
Daniel Lobato
|
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
|
2 |
d4e021f3
|
Amos Benari
|
|
3 |
|
|
|
4 |
9c1fa5fb
|
Daniel Lobato
|
require 'foreman_docker/version'
|
5 |
6d9a867c
|
Daniel Lobato
|
require 'date'
|
6 |
d4e021f3
|
Amos Benari
|
|
7 |
|
|
|
8 |
|
|
Gem::Specification.new do |s|
|
9 |
9c1fa5fb
|
Daniel Lobato
|
s.name = 'foreman_docker'
|
10 |
d4e021f3
|
Amos Benari
|
s.version = ForemanDocker::VERSION
|
11 |
ebf84ccf
|
Daniel Lobato
|
s.date = Date.today.to_s
|
12 |
9c1fa5fb
|
Daniel Lobato
|
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 |
224c2407
|
Daniel Lobato Garcia
|
s.licenses = ['GPL-3.0']
|
18 |
d4e021f3
|
Amos Benari
|
|
19 |
9c1fa5fb
|
Daniel Lobato
|
s.files = Dir['{app,config,db,lib,locale}/**/*', 'LICENSE', 'Rakefile', 'README.md']
|
20 |
02f8e4fa
|
Eric D. Helms
|
s.test_files = Dir['test/**/*', '.rubocop.yml']
|
21 |
d4e021f3
|
Amos Benari
|
|
22 |
2fbd23c3
|
Daniel Lobato
|
s.add_dependency 'docker-api', '~> 1.18'
|
23 |
ae6e223e
|
Sebastian Gräßl
|
s.add_dependency 'excon', '~> 0.46'
|
24 |
1aa3ddb3
|
Daniel Lobato
|
s.add_dependency 'deface', '< 2.0'
|
25 |
07c93cb4
|
Daniel Lobato
|
s.add_dependency 'wicked', '~> 1.1'
|
26 |
367f39d2
|
Sebastian Gräßl
|
|
27 |
fb471374
|
Michael Moll
|
s.add_development_dependency 'rubocop', '0.52.0'
|
28 |
d4e021f3
|
Amos Benari
|
end |