teuton 2.7.2 → 2.7.3

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
  SHA256:
3
- metadata.gz: 49783f5731dfc4f6344649a794f17b02e0d79e6f197068dde010414cdb6f7873
4
- data.tar.gz: 0a4c44633bc0f101e5095678edf9da2e2c22372641302647244917c573a777c2
3
+ metadata.gz: a4bee1e3cc6c28460e9fd3cbaf09dacf2c16c1824a4bc4782aeb1749a25b5fda
4
+ data.tar.gz: 5d41ccb0c129a9894eaa4ae13db4116cf4dc13c875aeaf1edade09159cccc6fc
5
5
  SHA512:
6
- metadata.gz: ea56789646f536090a8afb7a28aef46e89daec281b7fe7c95bad0ff7170c27f1f1937540c899bf9d6e9b16c8126871facde4bedf97d5c7269bb8e51d49778066
7
- data.tar.gz: e1ed282d52fbbe1519bbf597669680b46b680c5b3fa7164a0edf6e1472b7b356fce9bdc7e13ab68448a9e2318139a37a1adb6eda62a667dd00a3ba0ae2b6c339
6
+ metadata.gz: 005a48257a74193057e0edba4e6a65edbd7481962f8f380f82f6f5dbae1a6e49f16d74e4f5dc5a9919f8a54ba17c5293f09eaec793e56a11f8d192a706e7a776
7
+ data.tar.gz: 58d57804d06cc4edaaf0327199fc3ff5845fea01e342a071fc61c52376e08b51ae67d233f5f780fe333445bee64d9066bcd6545fd41f29bf587b46a1d00c362f
@@ -1,4 +1,16 @@
1
1
 
2
+ ## [2.7.3] 20230607
3
+
4
+ - [FIX] Hall of fame now use Project class instead of Application.
5
+
6
+ ## [2.7.2] 20230607
7
+
8
+ - [FIX] Fixed an issue that appeared when exporting reports without feedback after failing to connect to remote computer.
9
+
10
+ ## [2.7.1]
11
+
12
+ - [FIX] Fixed an issue that appeared when executing test and fail connection to remote computer.
13
+
2
14
  ## [2.7.0]
3
15
 
4
16
  New features:
data/docs/dsl/expect.md CHANGED
@@ -29,6 +29,7 @@ expect 'obiwan' # Expect previous run command output contains obiwan text
29
29
  | expect_none | no output lines expected |
30
30
  | expect_nothing | no output lines expected |
31
31
  | expect /Obiwan\|obi-wan/ | one or more line/s with Obiwan or obi-wan. This example uses regular expresions. |
32
+ | expect_exit NUMBER | Check exit code is NUMBER |
32
33
 
33
34
  ## Advanced
34
35
 
@@ -1,5 +1,6 @@
1
1
  require "rainbow"
2
2
  require "terminal-table"
3
+ # require_relative "../utils/application"
3
4
  require_relative "../utils/project"
4
5
 
5
6
  # | Verbosity level | Description |
@@ -121,11 +122,12 @@ class ShowReport
121
122
  end
122
123
 
123
124
  def show_hall_of_fame
124
- return if Project.value[:hall_of_fame].size < 3
125
+ hall_of_fame = Project.value[:hall_of_fame]
126
+ return if hall_of_fame.size < 3
125
127
 
126
128
  puts Rainbow("HALL OF FAME").bright
127
129
  my_screen_table = Terminal::Table.new do |st|
128
- app.hall_of_fame.each do |line|
130
+ hall_of_fame.each do |line|
129
131
  st.add_row [line[0], line[1]]
130
132
  end
131
133
  end
@@ -1,5 +1,5 @@
1
1
  module Teuton
2
- VERSION = "2.7.2"
2
+ VERSION = "2.7.3"
3
3
  APPNAME = "teuton"
4
4
  GEMNAME = "teuton"
5
5
  DOCKERNAME = "dvarrui/#{GEMNAME}"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: teuton
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.2
4
+ version: 2.7.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Vargas Ruiz