osc-machete 1.2.1 → 1.2.2

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
  SHA1:
3
- metadata.gz: 278d35cf155df22288ff6461da640b4343ded2b7
4
- data.tar.gz: 249a7dbc0bcc024cec9a194393d2824b3a2c5a0f
3
+ metadata.gz: f5904fa772fa67f531313d32b25d6fb94f4eccc7
4
+ data.tar.gz: 66f7f2bffcbce2a8f7e056d11494bcd77ec8b192
5
5
  SHA512:
6
- metadata.gz: 0a1d597265cd0156dc6048116ddb0d280708f5b2695e0b0c6239b29b6d8213c74f6868988731e1b0a83e9bba581116072e31ff2aaedf3fa0952bf9e27bedafd2
7
- data.tar.gz: b17d96c2572a8c15bcea6fa0360c710ee3777b4568f676c4e127c6d3cebaea0d5966fec445bc1ecf6308f1efe9aa6ecc4c2abb09495e831edf3b649aa0cfd93a
6
+ metadata.gz: 356d323852feadf4591dc0d93a5cb9076da76b39063c4cb3fed2b987b4f102a9d33336ca0dfdff32e4b3eb69b852797a2154ca4b9a9f27b1697c157d6472ce21
7
+ data.tar.gz: 15c2d2cda266fce71a985fe14f6f5d4ed28d8f006b7bf40f6e18e46ee4322682a95253711e389b0e0fdf9ecf9c985c1e98a94e880f35410da8abdb0070569365
@@ -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.0...master
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'
@@ -1,6 +1,6 @@
1
1
  module OSC
2
2
  module Machete
3
3
  # The current gem version
4
- VERSION = "1.2.1"
4
+ VERSION = "1.2.2"
5
5
  end
6
6
  end
@@ -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.1
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: 2016-12-16 00:00:00.000000000 Z
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: