forked from theforeman/foreman_docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforeman_docker.gemspec
More file actions
23 lines (19 loc) · 884 Bytes
/
Copy pathforeman_docker.gemspec
File metadata and controls
23 lines (19 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'foreman_docker/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'foreman_docker'
s.version = ForemanDocker::VERSION
s.date = Date.today.to_s
s.authors = ['Daniel Lobato, Amos Benari']
s.email = ['dlobatog@redhat.com, abenari@redhat.com']
s.homepage = 'http://github.com/theforeman/foreman-docker'
s.summary = 'Provision and manage Docker containers and images from Foreman'
s.description = 'Provision and manage Docker containers and images from Foreman.'
s.licenses = ['GPL-3']
s.files = Dir['{app,config,db,lib,locale}/**/*', 'LICENSE', 'Rakefile', 'README.md']
s.test_files = Dir['test/**/*']
s.add_dependency 'docker-api', '1.17'
s.add_dependency 'wicked', '~> 1.1'
end