Sha256: 2dfa17842efa380c1e968be46bf405074446074951fde0edb69939de97422652
Contents?: true
Size: 1 KB
Versions: 1
Compression:
Stored size: 1 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "orchestration/version" Gem::Specification.new do |spec| spec.name = "orchestration" spec.version = Orchestration::VERSION spec.authors = ["Bob Farrell"] spec.email = ["robertanthonyfarrell@gmail.com"] spec.summary = %q{Docker orchestration for Ruby applications} spec.description = %q{Toolkit for consistent and easy Docker orchestration } spec.homepage = "https://github.com/bobf/orchestration" spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = "bin" spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.16" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
orchestration-0.1.0 | orchestration.gemspec |