beginner.codes 0.1.6 → 0.1.7
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 +4 -4
- data/CHANGELOG.md +19 -0
- data/lib/challenges.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 552f7fa00226bf2d727aa23abfee7f4c4be699bfe30bd3148fa1b685a801337a
|
4
|
+
data.tar.gz: 74cb8136a5d6f8c265fe7aa867bcafc3c412db87589dfc5a0091d4eb1e98b967
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 869d24a40f99424ce3d0c5c757fa783224fc24db737ecfbbc764c797407c3d2052ab394753447d0b72a9257c5cccdac7afeac98c72de6b8f174fb5173c36dc3b
|
7
|
+
data.tar.gz: 8c4e974214f01cb317229ee22273234833925ca05b33223ad49c253c74274ec86e6f8cb0be0daaa7a3bffd2719b431fb15922d65abc459675b5cd0084cc0151a
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,22 @@
|
|
1
|
+
# 0.1.7 (14 November 2023)
|
2
|
+
|
3
|
+
---
|
4
|
+
|
5
|
+
## Enhancements
|
6
|
+
|
7
|
+
- Results table now displays arrays properly thanks to the `.inspect` method
|
8
|
+
|
9
|
+
## Bug Fixes
|
10
|
+
|
11
|
+
- Fixed a bug where the Gem completely stopped working.
|
12
|
+
|
13
|
+
## Performance
|
14
|
+
|
15
|
+
## Documentation
|
16
|
+
|
17
|
+
- if it aint fixed, break it
|
18
|
+
|
19
|
+
---
|
1
20
|
# 0.1.6 (11 November 2023)
|
2
21
|
|
3
22
|
---
|
data/lib/challenges.rb
CHANGED
@@ -124,7 +124,7 @@ def show_results(challenge, results, total_tests, info)
|
|
124
124
|
results.each do |result|
|
125
125
|
next unless result.status.equal?(Status::FAILED) or result.status.equal?(Status::EXCEPTION)
|
126
126
|
|
127
|
-
rows << [result.index, result.expected, result.got]
|
127
|
+
rows << [result.index, result.expected.inspect, result.got]
|
128
128
|
failures += 1
|
129
129
|
end
|
130
130
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beginner.codes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mr. Robinhood 5
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2023-11-
|
12
|
+
date: 2023-11-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: pastel
|