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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/cloudmunda/cli/worker.rb +1 -1
- data/lib/cloudmunda/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa22e60b419b0fb38805bfd6dfef4069e097375365c74aded6abbafc68279cb5
|
4
|
+
data.tar.gz: a119b7b073045c56c81aa1906c5cd0c2b3ae6ba0e5331c885b1dcaa3f138a9a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
data/lib/cloudmunda/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2022-08-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|