CloudyScripts 1.8.36 → 1.8.37

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.
data/Rakefile CHANGED
@@ -12,7 +12,7 @@ require 'rake/testtask'
12
12
 
13
13
  spec = Gem::Specification.new do |s|
14
14
  s.name = 'CloudyScripts'
15
- s.version = '1.8.36'
15
+ s.version = '1.8.37'
16
16
  s.has_rdoc = true
17
17
  s.extra_rdoc_files = ['README.rdoc', 'LICENSE']
18
18
  s.summary = 'Scripts to facilitate programming for infrastructure clouds.'
@@ -330,7 +330,7 @@ module StateTransitionHelper
330
330
  if !done
331
331
  msg = "Failed to attach volume '#{volume_id}' to instance '#{instance_id}"
332
332
  @logger.error "#{msg}"
333
- raise Exception.new("volume #{mount_point} not attached")
333
+ raise Exception.new("volume #{volume_id} not attached")
334
334
  else
335
335
  msg = "volume #{volume_id} successfully attached"
336
336
  @logger.info "#{msg}"
@@ -365,7 +365,7 @@ module StateTransitionHelper
365
365
  if !done
366
366
  msg = "Failed to detach volume '#{volume_id}' from instance '#{instance_id}"
367
367
  @logger.error "#{msg}"
368
- raise Exception.new("volume #{mount_point} not detached")
368
+ raise Exception.new("volume #{volume_id} not detached")
369
369
  else
370
370
  msg = "volume #{volume_id} successfully detached"
371
371
  @logger.info "#{msg}"
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: CloudyScripts
3
3
  version: !ruby/object:Gem::Version
4
- hash: 127
4
+ hash: 125
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 8
9
- - 36
10
- version: 1.8.36
9
+ - 37
10
+ version: 1.8.37
11
11
  platform: ruby
12
12
  authors:
13
13
  - Matthias Jung