cloudmunda 0.1.5 → 0.1.6

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
  SHA256:
3
- metadata.gz: d39c8c008a5daa06c17d7b1043da928af38b1526c03cf7b720e3f80170cf90f8
4
- data.tar.gz: 20648b7f7b16f890de112425f0ab8ebea2fa28977448944de6f4feae015483a4
3
+ metadata.gz: aa22e60b419b0fb38805bfd6dfef4069e097375365c74aded6abbafc68279cb5
4
+ data.tar.gz: a119b7b073045c56c81aa1906c5cd0c2b3ae6ba0e5331c885b1dcaa3f138a9a2
5
5
  SHA512:
6
- metadata.gz: 37f31eb311148f3d4d44dae9790701dc136f92904337118786e749710db0fe54e4845d890985693fa788e22edbcf11dfa1b9c91d3f24daddf03b47c94b0d8e36
7
- data.tar.gz: f171d29587a6c5ad5fc854a9008f6a1af30b12b070311633bf57dbf96ccb7a356c275347fb80d2fed2126ae67a0938e1aed555d743398769463bd5b18545312d
6
+ metadata.gz: c92af9e3a88c96b443a21fc505ff95de3923ee2a788d022ac9e6fd163a9c5c20cb58724cef76bcece015f5b665c5b4d04d0c3954dd5d5f4ab2ed1db3c17b65da
7
+ data.tar.gz: cdf246cc79d26f03b90dababdaf2d73b620fa50aab917b4e1287409d8d2327c56706b97f92cbd9e840d4c36679483b3650c9090802d89e48e17ae07e305ff85a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.6] - 2022-08-11
4
+
5
+ - Fix for 0.1.4 changes. This resulted in *only* running the `-dev` type and not the production type.
6
+
3
7
  ## [0.1.5] - 2022-08-09
4
8
  - Remove usage of Concurrent::TimerTask's timeout_interval since it has been deprecated.
5
9
 
@@ -57,7 +57,7 @@ module Cloudmunda
57
57
  #
58
58
  # @return [String]
59
59
  def get_type
60
- get_runs_in_development ? "#{@type}-dev" : @type
60
+ get_runs_in_development && Cloudmunda.env == 'development' ? "#{@type}-dev" : @type
61
61
  end
62
62
 
63
63
  # Sets the maximum number of jobs to send to the worker for processing at once.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Cloudmunda
4
- VERSION = '0.1.5'
4
+ VERSION = '0.1.6'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudmunda
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lien Van Den Steen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-09 00:00:00.000000000 Z
11
+ date: 2022-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby