osc-machete 1.2.1 → 1.2.2
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 +4 -4
- data/CHANGELOG.md +9 -1
- data/lib/osc/machete/torque_helper.rb +1 -1
- data/lib/osc/machete/version.rb +1 -1
- data/test/test_torque_helper.rb +3 -3
- metadata +2 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f5904fa772fa67f531313d32b25d6fb94f4eccc7
|
|
4
|
+
data.tar.gz: 66f7f2bffcbce2a8f7e056d11494bcd77ec8b192
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 356d323852feadf4591dc0d93a5cb9076da76b39063c4cb3fed2b987b4f102a9d33336ca0dfdff32e4b3eb69b852797a2154ca4b9a9f27b1697c157d6472ce21
|
|
7
|
+
data.tar.gz: 15c2d2cda266fce71a985fe14f6f5d4ed28d8f006b7bf40f6e18e46ee4322682a95253711e389b0e0fdf9ecf9c985c1e98a94e880f35410da8abdb0070569365
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [1.2.2] - 2017-08-04
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- host name for Ruby Cluster changed
|
|
13
|
+
|
|
8
14
|
## [1.2.1] - 2016-12-16
|
|
9
15
|
|
|
10
16
|
### Fixed
|
|
@@ -131,7 +137,9 @@ lib/osc/machete/torque_helper.rb _(still an internal class right now, not meant
|
|
|
131
137
|
|
|
132
138
|
Previous release of osc-machete
|
|
133
139
|
|
|
134
|
-
[Unreleased]: https://github.com/AweSim-OSC/osc-machete/compare/v1.2.
|
|
140
|
+
[Unreleased]: https://github.com/AweSim-OSC/osc-machete/compare/v1.2.2...master
|
|
141
|
+
[1.2.2]: https://github.com/AweSim-OSC/osc-machete/compare/v1.2.1...v1.2.2
|
|
142
|
+
[1.2.1]: https://github.com/AweSim-OSC/osc-machete/compare/v1.2.0...v1.2.1
|
|
135
143
|
[1.2.0]: https://github.com/AweSim-OSC/osc-machete/compare/v1.1.4...v1.2.0
|
|
136
144
|
[1.1.4]: https://github.com/AweSim-OSC/osc-machete/compare/v1.1.3...v1.1.4
|
|
137
145
|
[1.1.3]: https://github.com/AweSim-OSC/osc-machete/compare/v1.1.2...v1.1.3
|
|
@@ -12,7 +12,7 @@ class OSC::Machete::TorqueHelper
|
|
|
12
12
|
BIN = ENV['TORQUE_BIN'] || '/opt/torque/bin'
|
|
13
13
|
HOSTS = {
|
|
14
14
|
'oakley' => 'oak-batch.osc.edu',
|
|
15
|
-
'ruby' => 'ruby-batch.osc.edu',
|
|
15
|
+
'ruby' => 'ruby-batch.ten.osc.edu',
|
|
16
16
|
'quick' => 'quick-batch.ten.osc.edu',
|
|
17
17
|
'owens' => 'owens-batch.ten.osc.edu',
|
|
18
18
|
:default => 'oak-batch.osc.edu'
|
data/lib/osc/machete/version.rb
CHANGED
data/test/test_torque_helper.rb
CHANGED
|
@@ -216,14 +216,14 @@ class TestTorqueHelper < Minitest::Test
|
|
|
216
216
|
|
|
217
217
|
def test_pbs_host_variations
|
|
218
218
|
# you can use the cluster ids
|
|
219
|
-
assert_equal 'ruby-batch.osc.edu', @shell.pbs(host: 'ruby').host
|
|
219
|
+
assert_equal 'ruby-batch.ten.osc.edu', @shell.pbs(host: 'ruby').host
|
|
220
220
|
|
|
221
221
|
# or you can use the host itself
|
|
222
222
|
assert_equal 'ruby-batch.osc.edu', @shell.pbs(host: 'ruby-batch.osc.edu').host
|
|
223
223
|
assert_equal '@ruby-batch', @shell.pbs(host: '@ruby-batch').host
|
|
224
224
|
|
|
225
|
-
assert_equal 'ruby-batch.osc.edu', @shell.pbs(id: '4567').host
|
|
226
|
-
assert_equal 'ruby-batch.osc.edu', @shell.pbs(script: @script_ruby).host
|
|
225
|
+
assert_equal 'ruby-batch.ten.osc.edu', @shell.pbs(id: '4567').host
|
|
226
|
+
assert_equal 'ruby-batch.ten.osc.edu', @shell.pbs(script: @script_ruby).host
|
|
227
227
|
assert_equal 'oak-batch.osc.edu', @shell.pbs(script: @script_oakley).host
|
|
228
228
|
end
|
|
229
229
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: osc-machete
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eric Franz
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-08-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -175,4 +175,3 @@ test_files:
|
|
|
175
175
|
- test/test_status.rb
|
|
176
176
|
- test/test_torque_helper.rb
|
|
177
177
|
- test/test_torque_helper_live.rb
|
|
178
|
-
has_rdoc:
|