ecs-compose 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/ecs-compose.gemspec +16 -0
- metadata +63 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: a51a413bbd5384fc680be58ac3e286e33c84b74b
|
|
4
|
+
data.tar.gz: dd60e7c1eea1e6139dd110a219e4e4199d441824
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 98acdb5285105a09cde02431e4764bdf934b66fff33800929e10791d0127c28527403e5901bfdb466fb1f9c1d1ed187d84e5cb8290a5a79068d3ae890e311d9c
|
|
7
|
+
data.tar.gz: 68f0a9bfb7ef3df8203a3f6e530c8048afb9e90eb17fc0f26fd2a0124211c347ed8998ab4ee8da2d0a0590cef1e2cd86a9d9dea6f3f4d1992de5ff0a79df6cca
|
data/ecs-compose.gemspec
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
Gem::Specification.new do |spec|
|
|
3
|
+
spec.name = "ecs-compose"
|
|
4
|
+
spec.version = '0.0.0'
|
|
5
|
+
spec.authors = ["Eric Kidd"]
|
|
6
|
+
spec.email = ["git@randomhacks.net"]
|
|
7
|
+
|
|
8
|
+
spec.summary = %q{ALIAS FOR ecs_compose. Deploy docker-compose.yml files to Amazon EC2 Container Service}
|
|
9
|
+
spec.description = %q{ALIAS FOR ecs_compose. An interace to the Amazon EC2 Container Service that works vaguely like docker-compose, for people who are familiar with a docker-compose workflow.}
|
|
10
|
+
spec.homepage = "https://github.com/faradayio/ecs_compose"
|
|
11
|
+
spec.license = "MIT"
|
|
12
|
+
|
|
13
|
+
spec.files = ['ecs-compose.gemspec']
|
|
14
|
+
|
|
15
|
+
spec.add_runtime_dependency 'ecs_compose'
|
|
16
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ecs-compose
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Eric Kidd
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-12-17 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: ecs_compose
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
description: ALIAS FOR ecs_compose. An interace to the Amazon EC2 Container Service
|
|
28
|
+
that works vaguely like docker-compose, for people who are familiar with a docker-compose
|
|
29
|
+
workflow.
|
|
30
|
+
email:
|
|
31
|
+
- git@randomhacks.net
|
|
32
|
+
executables: []
|
|
33
|
+
extensions: []
|
|
34
|
+
extra_rdoc_files: []
|
|
35
|
+
files:
|
|
36
|
+
- ecs-compose.gemspec
|
|
37
|
+
homepage: https://github.com/faradayio/ecs_compose
|
|
38
|
+
licenses:
|
|
39
|
+
- MIT
|
|
40
|
+
metadata: {}
|
|
41
|
+
post_install_message:
|
|
42
|
+
rdoc_options: []
|
|
43
|
+
require_paths:
|
|
44
|
+
- lib
|
|
45
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
46
|
+
requirements:
|
|
47
|
+
- - ">="
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: '0'
|
|
50
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
requirements: []
|
|
56
|
+
rubyforge_project:
|
|
57
|
+
rubygems_version: 2.2.2
|
|
58
|
+
signing_key:
|
|
59
|
+
specification_version: 4
|
|
60
|
+
summary: ALIAS FOR ecs_compose. Deploy docker-compose.yml files to Amazon EC2 Container
|
|
61
|
+
Service
|
|
62
|
+
test_files: []
|
|
63
|
+
has_rdoc:
|