-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker_task.gemspec
More file actions
28 lines (23 loc) · 1.02 KB
/
docker_task.gemspec
File metadata and controls
28 lines (23 loc) · 1.02 KB
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
26
27
28
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'docker_task/version'
Gem::Specification.new do |spec|
spec.name = "docker_task"
spec.version = ENV['BUILD_VERSION'] || DockerTask::VERSION
spec.authors = ["Mark John Buenconsejo"]
spec.email = ["mark@nlevel.io"]
spec.summary = %q{A rake helper in working with Docker containers.}
spec.description = %q{A rake helper of common tasks for use when working with Docker containers.}
spec.homepage = "https://github.com/nlevel/docker_task"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = [ 'lib' ]
spec.add_dependency 'rake'
spec.add_development_dependency 'bundler', '~> 1.14'
spec.add_development_dependency 'minitest', '~> 5.0'
end