teuton 2.3.9 → 2.3.10

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
  SHA256:
3
- metadata.gz: 44964e011d270c87d22b3571bd8637a1da2397dd66ad69cc869c591ed12147f2
4
- data.tar.gz: 835924c003e68e42f697613c03324ff207b772ed7ed39601627a5d5a8a8c924a
3
+ metadata.gz: ba8dbeaec5863f4d60b6853aca32cfce221b2ac27aca80d268fff111f23095b7
4
+ data.tar.gz: 450bf428d168aaa7368cc75856008104eab18a19f6303523c9725f35b65a7afe
5
5
  SHA512:
6
- metadata.gz: 17f65a4398602b5baaa80fa86f801c953462c76021cc630dd4d5c6634e26459b34bececd59aa7e2a78f2fd8d1bf5b77214f3883052a44ce743a7da524695faa8
7
- data.tar.gz: 2f376375fa4186d5eb3414f422d81ccd5035f33303b8091cd0166e494512e0e1bad7d8dbb7dd797b1c80bb1b5637b4ecc71189d6863c5ef7fcf2b723aa2a987c
6
+ metadata.gz: 839450ffcf8c53be3c9ab21d4ecc1957fcac7a18abf13d790b810501120a4764084c415e718c711a7f7500b538d70441f754450fa8d6730718b6f1b372ed50f6
7
+ data.tar.gz: 7bb2ba86ade115df17aff814176b19011f2a97eefc37494869ec87aa59c7a4d4b2909f4f2fd44fcdb81b15c7de465a72fbc9ed0898e8cc7b0addd54975a7f01e
data/docs/CHANGELOG.md CHANGED
@@ -2,27 +2,20 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ * [version 2.3](changelog/v2.3.md)
6
+ * [version 2.2](changelog/v2.2.md)
7
+ * [version 2.1](changelog/v2.1.md)
8
+ * [version 2.0](changelog/v2.0.md)
9
+
5
10
  ## TO-DO
6
11
 
7
12
  - Teuton readme --lang=es
8
13
 
9
- ## [2.4.0]
10
-
11
- New features:
12
- - Add new DSL keyword: expect_last, expect_fisrt
13
- - New doc and example: learn-15-exit_codes
14
- - Remove os gem.
15
- - Change test output colors to green as use others test tools.
16
-
17
- Bug fixed:
18
- - All "expect*" keywords must require 2 arguments. The second is optional.
19
-
20
- Revise
21
- - Remove colors to log text
22
- - teuton readme: macros, getvars, expect_last, expect_first
23
- - Formatter: xml, csv, list, etc.
24
-
25
-
26
- * [version 2.2](changelog/v2.2.md)
27
- * [version 2.1](changelog/v2.1.md)
28
- * [version 2.0](changelog/v2.0.md)
14
+ Revise documentation:
15
+ * Doc learn 10,11, 12,13 y 14
16
+ * 10 result and moodle_id
17
+ * 11 get_vars
18
+ * 12 alias
19
+ * 13 include
20
+ * 14 macro
21
+ * Doc tt_include
@@ -1,3 +1,4 @@
1
+ [<< back](../CHANGELOG.md)
1
2
 
2
3
  # CHANGELOG
3
4
 
@@ -1,3 +1,4 @@
1
+ [<< back](../CHANGELOG.md)
1
2
 
2
3
  # CHANGELOG teuton v 2.1
3
4
 
@@ -1,3 +1,4 @@
1
+ [<< back](../CHANGELOG.md)
1
2
 
2
3
  # Teuton (version 2.2)
3
4
 
@@ -39,15 +40,3 @@ expect_one get(:username)
39
40
 
40
41
  * Solucionar fallo en --cname
41
42
  * Revisar doc options como cpanel
42
-
43
- ## TODO
44
-
45
- **Documentation**
46
-
47
- * Doc learn 10,11, 12,13 y 14
48
- * 10 result and moodle_id
49
- * 11 get_vars
50
- * 12 alias
51
- * 13 include
52
- * 14 macro
53
- * Doc tt_include
@@ -0,0 +1,6 @@
1
+
2
+ ## [2.3.9]
3
+
4
+ Bug fixed:
5
+ - Remove warnings from linter
6
+ - Remove warning about thor gem version. Upgrade gem to 1.2
@@ -0,0 +1,16 @@
1
+
2
+ ## [2.4.0]
3
+
4
+ New features:
5
+ - Add new DSL keyword: expect_last, expect_fisrt
6
+ - New doc and example: learn-15-exit_codes
7
+ - Remove os gem.
8
+ - Change test output colors to green as use others test tools.
9
+
10
+ Bug fixed:
11
+ - All "expect*" keywords must require 2 arguments. The second is optional.
12
+
13
+ Revise
14
+ - Remove colors to log text
15
+ - teuton readme: macros, getvars, expect_last, expect_first
16
+ - Formatter: xml, csv, list, etc.
@@ -100,12 +100,8 @@ class Laboratory
100
100
 
101
101
  script_vars = find_script_vars
102
102
  config_vars = ConfigFileReader.read(@path[:config])
103
- unless config_vars[:global].nil?
104
- config_vars[:global].each_key { |k| script_vars.delete(k) }
105
- end
106
- unless config_vars[:alias].nil?
107
- config_vars[:alias].each_key { |k| script_vars.delete(k) }
108
- end
103
+ config_vars[:global]&.each_key { |k| script_vars.delete(k) }
104
+ config_vars[:alias]&.each_key { |k| script_vars.delete(k) }
109
105
 
110
106
  config_vars[:cases].each_with_index do |item, index|
111
107
  next if item[:tt_skip] == true
@@ -144,13 +144,13 @@ class Readme
144
144
 
145
145
  puts "\n---"
146
146
  puts "# ANEXO"
147
- puts "\n\#\# Global params"
147
+ puts "\n## Global params"
148
148
  puts Lang.get(:global)
149
149
  puts "\n"
150
150
  puts "| Global param | Value |"
151
151
  puts "| --- | --- |"
152
152
  @global_params.each_pair { |k, v| puts "|#{k}|#{v}|" }
153
- puts "\n\#\# Created params"
153
+ puts "\n## Created params"
154
154
  puts Lang.get(:created)
155
155
  puts "\n"
156
156
  puts "| Created params | Value |"
@@ -1,5 +1,5 @@
1
1
  module Teuton
2
- VERSION = "2.3.9"
2
+ VERSION = "2.3.10"
3
3
  APPNAME = "teuton"
4
4
  GEMNAME = "teuton"
5
5
  DOCKERNAME = "dvarrui/#{GEMNAME}"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: teuton
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.9
4
+ version: 2.3.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Vargas Ruiz
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-25 00:00:00.000000000 Z
11
+ date: 2022-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colorize
@@ -142,6 +142,8 @@ extra_rdoc_files:
142
142
  - docs/changelog/v2.0.md
143
143
  - docs/changelog/v2.1.md
144
144
  - docs/changelog/v2.2.md
145
+ - docs/changelog/v2.3.md
146
+ - docs/changelog/v2.4.md
145
147
  - docs/changelog/version2.1.md
146
148
  - docs/commands/README.md
147
149
  - docs/commands/example_check.md
@@ -196,6 +198,8 @@ files:
196
198
  - docs/changelog/v2.0.md
197
199
  - docs/changelog/v2.1.md
198
200
  - docs/changelog/v2.2.md
201
+ - docs/changelog/v2.3.md
202
+ - docs/changelog/v2.4.md
199
203
  - docs/changelog/version2.1.md
200
204
  - docs/commands/README.md
201
205
  - docs/commands/example_check.md
@@ -328,14 +332,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
328
332
  requirements:
329
333
  - - ">="
330
334
  - !ruby/object:Gem::Version
331
- version: 2.6.0
335
+ version: 2.5.9
332
336
  required_rubygems_version: !ruby/object:Gem::Requirement
333
337
  requirements:
334
338
  - - ">="
335
339
  - !ruby/object:Gem::Version
336
340
  version: '0'
337
341
  requirements: []
338
- rubygems_version: 3.2.33
342
+ rubygems_version: 3.3.26
339
343
  signing_key:
340
344
  specification_version: 4
341
345
  summary: Teuton (Infrastructure test)