sloe 0.8.3 → 0.8.4

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: ac0629fa00c56773698284e6a6bffbe09b8facb4
4
- data.tar.gz: db312567c6c088543a8effb496c22fc546144888
3
+ metadata.gz: 0302e48663e5617c6facc83d63d06d340ce120fa
4
+ data.tar.gz: 8e7109a0314d8fe29ab338d1d31a24446fd78158
5
5
  SHA512:
6
- metadata.gz: 5e5467991c2eea25b5c5b7629500472489ea1219592c61a0931d80e0380e67d5740ba675492a213215aabdcbd90754dbfbe6fcdbb07b03939ea9394fdad1e1b2
7
- data.tar.gz: 89975894ab8008a5f912a68dbc755d90bdd7467e16264f28c59fd5a959902d53f7306003ca90466c44a842d84a763c762aa9ae370cfde81e7a4b558cf853e4a2
6
+ metadata.gz: 04587b8bce1ecc91886a98277e2a9e7aebb73afb46793f608c0056d9b7e18654f23638f0c8d0184300547afd37be00e3771cb076a450da0a8a3fcfbb68ed4fad
7
+ data.tar.gz: 835094cec97d4a2624270008ebde40175f1359bf1ceafc6608007c8769ba4773c5f349a00de05516ea95dc9e1c3b5c1b460c27b845e7c31af5b8f5ba42f65182
data/lib/sloe/ixia.rb CHANGED
@@ -14,7 +14,7 @@ module Sloe
14
14
  # @return [Sloe::Ixia] object that can execute IxN config file
15
15
  def initialize(host: 'localhost', port: 8009, version: nil, ixncfg: nil, traffic_duration: 60, ixia_exe: '/root/ixos/bin/ixia_shell', clear_stats_after: 10, ftp_path: 'c:\\\\inetpub\\\\ftproot\\\\Reports')
16
16
  if ixncfg == nil
17
- fail ArgumentError, "missing mandatory IxNetwork script"
17
+ fail ArgumentError, "missing mandatory ixNetwork script"
18
18
  end
19
19
 
20
20
  @host = host
@@ -133,7 +133,7 @@ module Sloe
133
133
  |set vportList [ixNet getList $root vport]
134
134
  |ixTclNet::CheckLinkState $vportList notReadyVportList
135
135
  |foreach vport $notReadyVportList {
136
- | set port [IxNet getAttribute $vport -connectedTo]
136
+ | set port [ixNet getAttribute $vport -connectedTo]
137
137
  | ixNet exec clearOwnership $port
138
138
  | ixNet exec connectPort $vport
139
139
  |}
@@ -210,7 +210,7 @@ module Sloe
210
210
  code = <<-TCL.gsub(/^\s+\|/,'')
211
211
  |cleanUp
212
212
  |foreach vport $vportList {
213
- | set port [IxNet getAttribute $vport -connectedTo]
213
+ | set port [ixNet getAttribute $vport -connectedTo]
214
214
  | ixNet exec clearOwnership $port
215
215
  |}
216
216
  TCL
data/lib/sloe/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Sloe
2
2
  # Current version
3
- VERSION = "0.8.3"
3
+ VERSION = "0.8.4"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sloe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.3
4
+ version: 0.8.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Gethings