ood_core 0.5.0 → 0.5.1

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
  SHA1:
3
- metadata.gz: c5f8e7719004cb4013fba271ff78e0a8d6158bf6
4
- data.tar.gz: 79081802e2fe4e0470abd3cc00dd4c58fc2beecf
3
+ metadata.gz: 4b61e4bf73722fcbd1addb34112df942ac672909
4
+ data.tar.gz: bb8d8358be3565e2e9b304729936a69df5995e9d
5
5
  SHA512:
6
- metadata.gz: 135023bc492b2f9599f918f590a694cf2428d8614aaa7a75e3b6abc7a0b2d00407cae0569a3558b2668b37c60a146c7bc2f97f54ecb60e47800fb7fab386d323
7
- data.tar.gz: 0a33a1630e96a2e665310fc22480f85f748f6a4437823562600c40524df46535a2776d445b56731ee8ae01725b373a7f2c706eef290d9171f377fb76d78fab59
6
+ metadata.gz: bde820e45c4b5fd535eac02b76a3b736ca5f5dd912f93d732d7e659062c7416cc6c17833b20175be0ee92118ff99ef7f2ed29e14f7412c29c55b1431078540e5
7
+ data.tar.gz: bf23a4ac0338c9b63d9909ca2524d2fa896d7a3f23e7b4b3cfa1826a8e7eb2ec6423cba1f9a3b8b50c88f004368a46ec31784c6a9fc1c6c7be5f80b15df03a42
data/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.5.1] - 2018-05-14
11
+ ### Fixed
12
+ - Fixed mistyped `random_number` call in VNC template.
13
+ [#88](https://github.com/OSC/ood_core/pull/88)
14
+ ([@travigd](https://github.com/travigd))
15
+
10
16
  ## [0.5.0] - 2018-04-30
11
17
  ### Added
12
18
  - Added missing "Waiting" state to the Torque adapter as `:queued_held`.
@@ -124,7 +130,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
124
130
  ### Added
125
131
  - Initial release!
126
132
 
127
- [Unreleased]: https://github.com/OSC/ood_core/compare/v0.5.0...HEAD
133
+ [Unreleased]: https://github.com/OSC/ood_core/compare/v0.5.1...HEAD
134
+ [0.5.1]: https://github.com/OSC/ood_core/compare/v0.5.0...v0.5.1
128
135
  [0.5.0]: https://github.com/OSC/ood_core/compare/v0.4.0...v0.5.0
129
136
  [0.4.0]: https://github.com/OSC/ood_core/compare/v0.3.0...v0.4.0
130
137
  [0.3.0]: https://github.com/OSC/ood_core/compare/v0.2.1...v0.3.0
@@ -97,7 +97,7 @@ module OodCore
97
97
 
98
98
  # Check that Xvnc process is running, if not assume it died and
99
99
  # wait some random period of time before restarting
100
- kill -0 ${VNC_PID} 2>/dev/null || sleep 0.$(random 1 9)s
100
+ kill -0 ${VNC_PID} 2>/dev/null || sleep 0.$(random_number 1 9)s
101
101
 
102
102
  # If running, then all is well and break out of loop
103
103
  kill -0 ${VNC_PID} 2>/dev/null && break
@@ -1,4 +1,4 @@
1
1
  module OodCore
2
2
  # The current version of {OodCore}
3
- VERSION = "0.5.0"
3
+ VERSION = "0.5.1"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ood_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Nicklas
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-04-30 00:00:00.000000000 Z
11
+ date: 2018-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ood_support