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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +19 -0
  3. data/lib/challenges.rb +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb2311d48b3a619a02565b5d4038172500fc7aff654a7af3d9085732e38d0294
4
- data.tar.gz: 700302fc4e435f889df81f5c20ab929bdb80fd1057e2d257b0db00ae5f5fab91
3
+ metadata.gz: 552f7fa00226bf2d727aa23abfee7f4c4be699bfe30bd3148fa1b685a801337a
4
+ data.tar.gz: 74cb8136a5d6f8c265fe7aa867bcafc3c412db87589dfc5a0091d4eb1e98b967
5
5
  SHA512:
6
- metadata.gz: 56ea71d0fe3926cfff3618efed0949ef332a693eba65691777729cff91bf37754646b0021d9c876f4b3a1e6e6e917c4effccf26604e395d47442690d5b8c3458
7
- data.tar.gz: 15eabb9b8816636c9e6e1843e8592ebf69237a3e5f4b47739eb637ac0dd1347a06ec4bf671a2a8fb45b71c3ec812e52d15b33694377d7a9f87deee43f6296949
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.6
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 00:00:00.000000000 Z
12
+ date: 2023-11-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: pastel