tatum 1.0 → 1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -4
- data/lib/tatum.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: 6526226749774fbacf4355749428a8370fa796edd58be3a5fb650532d7ad9443
|
4
|
+
data.tar.gz: c56d4f6056895c0af3b0c74197cb6c83e43a6597c2998141a0b0082d7c922754
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 857524ae0e650651be0c423322f4026997598535af42f043ba3716c6a90f14c730100eda84add398c9b8cdb4bf8019a917e1e0a4fce3ebf943c4de3ab761c8b5
|
7
|
+
data.tar.gz: e71487d09ae58d11723e9a5140ab27c71d9ceb6f89f6834f7947b29e1c6649a1dbe40428a7e90393b4aac12b245c136da6d150778abd1b5de1cdd360982a5f8e
|
data/README.md
CHANGED
@@ -45,7 +45,7 @@ You can also set TTM back to not outputting to anything:
|
|
45
45
|
TTM.io = nil # don't output to anything
|
46
46
|
```
|
47
47
|
|
48
|
-
See the documentation in
|
48
|
+
See the documentation in tatum.rb for details.
|
49
49
|
|
50
50
|
## Author
|
51
51
|
|
@@ -54,6 +54,8 @@ mike@idocs.com
|
|
54
54
|
|
55
55
|
## History
|
56
56
|
|
57
|
-
| version | date | notes
|
58
|
-
|
59
|
-
| 1.0 | May 18, 2023 | Initial upload.
|
57
|
+
| version | date | notes |
|
58
|
+
|----------|--------------|-----------------------------|
|
59
|
+
| 1.0 | May 18, 2023 | Initial upload. |
|
60
|
+
| 1.1 | May 19, 2023 | Minor fix to documentation. |
|
61
|
+
| 1.2 | May 19, 2023 | Fixed bug in TTM.line. |
|
data/lib/tatum.rb
CHANGED
@@ -475,7 +475,7 @@ module TTM
|
|
475
475
|
loc = caller_locations()[opts['stack']]
|
476
476
|
|
477
477
|
# initialize output string
|
478
|
-
out = "[#{loc.lineno} #{File.basename(loc.path)}"
|
478
|
+
out = "[#{loc.lineno} #{::File.basename(loc.path)}"
|
479
479
|
|
480
480
|
# add included string if sent
|
481
481
|
if opts['include']
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tatum
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '1.
|
4
|
+
version: '1.2'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike O'Sullivan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-05-
|
11
|
+
date: 2023-05-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: text-table
|