distribot 0.1.10 → 0.1.11
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 +4 -4
- data/.docker/Dockerfile.base +1 -1
- data/.docker/Dockerfile.production +6 -0
- data/.docker/entrypoint.production.sh +5 -0
- data/Procfile +6 -0
- data/distribot.gemspec +1 -1
- metadata +4 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cab1c43ea9de129a58767b4d136d7b2aebdb2e3b
|
|
4
|
+
data.tar.gz: cca1c831d62b3a5d0e9ea4c7f2d75d48ffe9ed4f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9995c44432b30e03b74cef878f8058f6bf07c02f70b626cd12e440ec35ff0a83232efee0747e848998065365b2f4965ba4b1941e59a116d66d81b631fd424035
|
|
7
|
+
data.tar.gz: 08a3d5dae51aa8361e019eec14e029acae0b6e2c9a4473eb87249458210c13741718702714f73bcc78ec5713ef89b64febf93afc4465c1873f10d6ee97f7d149
|
data/.docker/Dockerfile.base
CHANGED
data/Procfile
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
flow-created: bundle exec bin/distribot.flow-created
|
|
2
|
+
flow-finished: bundle exec bin/distribot.flow-finished
|
|
3
|
+
handler-finished: bundle exec bin/distribot.handler-finished
|
|
4
|
+
phase-finished: bundle exec bin/distribot.phase-finished
|
|
5
|
+
phase-started: bundle exec bin/distribot.phase-started
|
|
6
|
+
task-finished: bundle exec bin/distribot.task-finished
|
data/distribot.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: distribot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Drago
|
|
@@ -234,6 +234,8 @@ extra_rdoc_files: []
|
|
|
234
234
|
files:
|
|
235
235
|
- .docker/Dockerfile.base
|
|
236
236
|
- .docker/Dockerfile.bundle
|
|
237
|
+
- .docker/Dockerfile.production
|
|
238
|
+
- .docker/entrypoint.production.sh
|
|
237
239
|
- .gitignore
|
|
238
240
|
- .rspec
|
|
239
241
|
- .rubocop.yml
|
|
@@ -241,6 +243,7 @@ files:
|
|
|
241
243
|
- Gemfile
|
|
242
244
|
- Gemfile.lock
|
|
243
245
|
- LICENSE
|
|
246
|
+
- Procfile
|
|
244
247
|
- README.md
|
|
245
248
|
- Rakefile
|
|
246
249
|
- bin/distribot.flow-created
|