tabulo 1.4.0 → 1.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/README.md +4 -4
- data/VERSION +1 -1
- data/lib/tabulo/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91b39d66ae733e33e28f3c16b9a8aee6fcf734db34b404429b1bba72063c1cb8
|
4
|
+
data.tar.gz: aa5b690e3b1d6ee9819e2a097c20fefffcf4559149d3574ca6d5514dab78f86e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 690f7c809c3dc9a47ec6e7f736f46fdbc129e21c23723d163ff6dc545c97b1b068c622ee88a943c5e858ff2f53bc59d490680b02a85b521652db8cfd6b5194ff
|
7
|
+
data.tar.gz: aaec0cb5f11f9724ba084bd3af961fca69a054601d1c86b6cc8a1fdf22a193f6de12abe25b2c41838db583dff06e4397036a3bade37da4ceb71d9494b7c659e6
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,12 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### v1.4.1
|
4
|
+
|
5
|
+
* Minor documentation fix
|
6
|
+
|
3
7
|
### v1.4.0
|
4
8
|
|
5
|
-
* New `#transpose` function to
|
9
|
+
* New `#transpose` function to produce a new Table in which the rows and
|
6
10
|
columns are transposed relative to the original one.
|
7
11
|
* Properly handle multibyte characters when calculating widths, wrapping etc..
|
8
12
|
|
data/README.md
CHANGED
@@ -548,8 +548,8 @@ a new table in which the rows and columns are swapped:
|
|
548
548
|
|
549
549
|
By default, a header row is added to the new table, showing the string value of the element
|
550
550
|
represented in that column. This can be configured, however, along with other aspects of
|
551
|
-
`transpose`'s behaviour. For details, see the
|
552
|
-
documentation
|
551
|
+
`transpose`'s behaviour. For details, see the
|
552
|
+
[documentation](https://www.rubydoc.info/gems/tabulo/1.4.1/Tabulo/Table#transpose-instance_method).
|
553
553
|
|
554
554
|
<a name="additional-configuration-options"></a>
|
555
555
|
### Additional configuration options
|
@@ -690,14 +690,14 @@ The gem is available as open source under the terms of the [MIT
|
|
690
690
|
License](http://opensource.org/licenses/MIT).
|
691
691
|
|
692
692
|
[Gem Version]: https://rubygems.org/gems/tabulo
|
693
|
-
[Documentation]: http://www.rubydoc.info/gems/tabulo/1.4.
|
693
|
+
[Documentation]: http://www.rubydoc.info/gems/tabulo/1.4.1
|
694
694
|
[Build Status]: https://travis-ci.org/matt-harvey/tabulo
|
695
695
|
[Coverage Status]: https://coveralls.io/r/matt-harvey/tabulo
|
696
696
|
[Code Climate]: https://codeclimate.com/github/matt-harvey/tabulo
|
697
697
|
[Awesome Ruby]: https://github.com/markets/awesome-ruby#cli-utilities
|
698
698
|
|
699
699
|
[GV img]: https://img.shields.io/gem/v/tabulo.svg
|
700
|
-
[DC img]: https://img.shields.io/badge/documentation-v1.4.
|
700
|
+
[DC img]: https://img.shields.io/badge/documentation-v1.4.1-blue.svg
|
701
701
|
[BS img]: https://img.shields.io/travis/matt-harvey/tabulo.svg
|
702
702
|
[CS img]: https://img.shields.io/coveralls/matt-harvey/tabulo.svg
|
703
703
|
[CC img]: https://codeclimate.com/github/matt-harvey/tabulo/badges/gpa.svg
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.4.
|
1
|
+
1.4.1
|
data/lib/tabulo/version.rb
CHANGED