orchestration 0.7.13 → 0.7.15

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 88ac6c1abc38cd440da7fcb344b449d030c587c583628bdd449d02068f49522c
4
- data.tar.gz: 6cd7f01dec6372ce5cc5eb2ed04ef6359ac5fa5869cf5736b39c0b611946b538
3
+ metadata.gz: 69778664ee0dbf49cfc65f604ce53939cb184a2368beae349b7176dd61dc795e
4
+ data.tar.gz: ce08d1786b3f9969103007ee2d72e8654ec2a8e5241665e6ee91997ac6afdc66
5
5
  SHA512:
6
- metadata.gz: e8a53799fecc687ab4121cd30409ebca199f355b549dfec2a19552c2975f3422f14b7180e6d964033b66c8410c4c047fd29503b16a45ca9b0c0cbbc93e71dbae
7
- data.tar.gz: 9f50b1fc445b8e6110d8f1d8af5d22b7bce28723130c13289f03e7d55057c28790b1637eb9691fdb065bd51cb546c16ce184d1fedd9c146e2fb3e75798680a93
6
+ metadata.gz: 938adaca373680e4ceac043a144c4e22fede0acdace7f64ba8dd989a832bdfed0a31d100155c19a958fed57e2985b91675396863494d88929337ca407201d260
7
+ data.tar.gz: ab827a0c1f6a3ad6e0d60333bd78d02cf27d39ee9b76eaf15afc4292e6faf22724339353a8757465a58ed5cb0361d50da0de42c7f3fba0907b22e88a4e2ba9cf
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- orchestration (0.7.13)
4
+ orchestration (0.7.14)
5
5
  database_url (~> 0.1.2)
6
6
  dotenv-rails (~> 2.8)
7
7
  erubis (~> 2.7)
@@ -191,7 +191,7 @@ else
191
191
  endif
192
192
 
193
193
  compose_base:=env -i \
194
- PATH=$(PATH) \
194
+ PATH="$(PATH)" \
195
195
  HOST_UID=$(shell id -u) \
196
196
  DOCKER_ORGANIZATION="${docker_organization}" \
197
197
  DOCKER_REPOSITORY="${docker_repository}" \
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Orchestration
4
- VERSION = '0.7.13'
4
+ VERSION = '0.7.15'
5
5
  end
data/lib/orchestration.rb CHANGED
@@ -92,7 +92,7 @@ module Orchestration
92
92
  end
93
93
  end
94
94
 
95
- if ENV['RAILS_ENV'] == 'development' && !ENV.key?('ORCHESTRATION_DISABLE_ENV')
95
+ if ENV.fetch('RAILS_ENV', 'development') == 'development' && !ENV.key?('ORCHESTRATION_DISABLE_ENV')
96
96
  require 'dotenv-rails'
97
97
  Dotenv::Railtie.load
98
98
  Orchestration.print_environment
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: orchestration
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.13
4
+ version: 0.7.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bob Farrell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-27 00:00:00.000000000 Z
11
+ date: 2024-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: database_url