distribot 0.1.10 → 0.1.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 07ee26e565a08fa420f1de3dc923576e6ec23cad
4
- data.tar.gz: 30a0aa682bd3980696528d89831c4e3af4b546a0
3
+ metadata.gz: cab1c43ea9de129a58767b4d136d7b2aebdb2e3b
4
+ data.tar.gz: cca1c831d62b3a5d0e9ea4c7f2d75d48ffe9ed4f
5
5
  SHA512:
6
- metadata.gz: 3dc00eb1f02d685570ca398deb7d432fcefdedeae64996d8d94bdd7e48154fbfc380c57fd9b65e0d252d26e701759489dc6f6c19edf3ebe536369b8ef0649e9a
7
- data.tar.gz: 1d681b5e718583624d7e52dfad6226f7f06f2cd7c1a9c52a1a8577f7b476d233c5bb12063c0d48b04efaab955b0a949006d0a5ace27a8b1f4cb3ec6c84c6c96f
6
+ metadata.gz: 9995c44432b30e03b74cef878f8058f6bf07c02f70b626cd12e440ec35ff0a83232efee0747e848998065365b2f4965ba4b1941e59a116d66d81b631fd424035
7
+ data.tar.gz: 08a3d5dae51aa8361e019eec14e029acae0b6e2c9a4473eb87249458210c13741718702714f73bcc78ec5713ef89b64febf93afc4465c1873f10d6ee97f7d149
@@ -21,4 +21,4 @@ COPY Gemfile /tmp/Gemfile
21
21
  COPY Gemfile.lock /tmp/Gemfile.lock
22
22
  COPY distribot.gemspec /tmp/distribot.gemspec
23
23
  USER ubuntu
24
- RUN cd /tmp/ && bundle
24
+ RUN cd /tmp/ && sudo chown ubuntu:ubuntu Gemfile.lock && bundle
@@ -0,0 +1,6 @@
1
+
2
+ FROM distribot:base
3
+ ADD . /opt/distribot
4
+ WORKDIR /opt/distribot
5
+ USER ubuntu
6
+ ENTRYPOINT [".docker/entrypoint.production.sh"]
@@ -0,0 +1,5 @@
1
+ #!/bin/bash -e
2
+
3
+ sudo chown -R ubuntu:ubuntu ./
4
+ bundle
5
+ foreman start
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
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = 'distribot'
3
- spec.version = '0.1.10'
3
+ spec.version = '0.1.11'
4
4
  spec.authors = ['John Drago']
5
5
  spec.email = 'jdrago.999@gmail.com'
6
6
  spec.homepage = 'https://github.com/distribot/distribot'
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.10
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