-
Notifications
You must be signed in to change notification settings - Fork 7
/
docker-template.gemspec
32 lines (29 loc) · 1.35 KB
/
docker-template.gemspec
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
29
30
31
32
# ----------------------------------------------------------------------------
# Frozen-string-literal: true
# Copyright: 2015 Jordon Bedwell - Apache v2.0 License
# Encoding: utf-8
# ----------------------------------------------------------------------------
$LOAD_PATH.unshift(File.expand_path("../lib", __FILE__))
require "docker/template/version"
Gem::Specification.new do |spec|
spec.authors = ["Jordon Bedwell"]
spec.executables << "docker-template"
spec.version = Docker::Template::VERSION
spec.description = "Build and template awesome Docker images a variety of ways."
spec.files = %W(Rakefile Gemfile README.md LICENSE) + Dir["{lib,bin,templates,comp}/**/*"]
spec.summary = "Build and template Docker images a variety of ways."
spec.homepage = "http://github.com/envygeeks/docker-template/"
spec.required_ruby_version = ">= 2.1.0"
spec.email = ["jordon@envygeeks.io"]
spec.require_paths = ["lib"]
spec.name = "docker-template"
spec.license = "MIT"
spec.bindir = "bin"
spec.add_runtime_dependency("thor", "~> 0.19")
spec.add_runtime_dependency("docker-api", "~> 1.28")
spec.add_runtime_dependency("activesupport", ">= 4.2", "< 5.2")
spec.add_runtime_dependency("simple-ansi", "~> 1.0")
spec.add_runtime_dependency("pathutil", "~> 0.7")
spec.add_runtime_dependency("extras", "~> 0.1")
spec.add_runtime_dependency("json", ">= 1.8")
end