orchestration 0.3.2 → 0.3.3

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: aea5d1bd3ee5d8ff8e50933f0a77cacd11673656
4
- data.tar.gz: 7ad21e9d6e6bb81ba6ec11908a6cb8fb454ad281
3
+ metadata.gz: e49d1834028ab1854b554f998dcd5779e5af3474
4
+ data.tar.gz: 35185f308b9bc16794a906f9b7e4bfec8b790355
5
5
  SHA512:
6
- metadata.gz: b4a0abfb39ab26599663496e931ab6968d7f7a36bd6270eb6519d21421315cac8f129aa55d8563aec9a88f235c6b98b2e56426a3d7daf1949e24ec7d7f4f8be4
7
- data.tar.gz: 634b4a3778c9ded136b319e42e31cc26dec7d5800150a10d27e7578d6e651faece1f49c0b3303ea9479e5ad9bd0d5683fccdedca9520f58a8e688b6e29f1e967
6
+ metadata.gz: 9f1b206a4458192418ef09dcac765fc1fc3c85b94b0f724f6009eadd20732f8e08cd9415395ce349740857a1a9f87a236f585f6dda77e03ba1838fe52bb200bd
7
+ data.tar.gz: e76e69bdf49ec909149510d8664776c1ff0c91e92a7f26eabeff70969bf987fc9910896127d9eac6ae7bca94c48fcee9fca6eed1e8a68150ecb261b98e6a1030
data/README.md CHANGED
@@ -18,7 +18,7 @@ Containers are automatically created for the following dependencies:
18
18
  Add this line to your application's Gemfile:
19
19
 
20
20
  ```ruby
21
- gem 'orchestration', '~> 0.3.2'
21
+ gem 'orchestration', '~> 0.3.3'
22
22
  ```
23
23
 
24
24
  And then build your bundle:
@@ -19,6 +19,6 @@ RUN . /root/.bashrc && yarn install
19
19
  <% end %>
20
20
  COPY entrypoint.sh /
21
21
  ADD .build/context.tar.gz .
22
- <% if defined?(Webpacker) %>RUN . /root/.bashrc && yarn install && bundle exec rake assets:precompile<% else %>RUN bundle exec rake assets:precompile<% end %>
22
+ <% if defined?(Webpacker) %>RUN . /root/.bashrc && yarn install && bundle exec rake assets:precompile<% elsif Rake::Task.tasks.map(&:name).include?('assets:precompile') %>RUN bundle exec rake assets:precompile<% end %>
23
23
  ENTRYPOINT ["/entrypoint.sh"]
24
24
  CMD ["bundle", "exec", "unicorn", "-c", "/app/config/unicorn.rb"]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Orchestration
4
- VERSION = '0.3.2'
4
+ VERSION = '0.3.3'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: orchestration
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bob Farrell