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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 53f13b68dff441391dc7250a607d3d449f52cf2735ba2259bf01ac60d996014e
4
- data.tar.gz: 2a3b0f1cd2225cf8ef4d143f115de50a24f23253888770d04c9329b76f5e15e5
3
+ metadata.gz: 91b39d66ae733e33e28f3c16b9a8aee6fcf734db34b404429b1bba72063c1cb8
4
+ data.tar.gz: aa5b690e3b1d6ee9819e2a097c20fefffcf4559149d3574ca6d5514dab78f86e
5
5
  SHA512:
6
- metadata.gz: 48358f0322bbd3bf6c85305e885d1a6afa6028a0688d8d9442eb1c67bd46870866c120fcb1aed4c33ce176e9cb72f60f61d657044a71a21f1c2960689225ed51
7
- data.tar.gz: 55f578f021f9b7516fef26ef0b7f4c583d0400c7bc8a1d069cdee609752a734698c73719294608a16bbb1709d9461657b8b354e8622233ba34b341653814ac95
6
+ metadata.gz: 690f7c809c3dc9a47ec6e7f736f46fdbc129e21c23723d163ff6dc545c97b1b068c622ee88a943c5e858ff2f53bc59d490680b02a85b521652db8cfd6b5194ff
7
+ data.tar.gz: aaec0cb5f11f9724ba084bd3af961fca69a054601d1c86b6cc8a1fdf22a193f6de12abe25b2c41838db583dff06e4397036a3bade37da4ceb71d9494b7c659e6
@@ -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 produced a new Table in which the rows and
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 documentation. (TODO Link to
552
- documentation for #transpose, once available at rubydoc site.)
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.0
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.0
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.0
1
+ 1.4.1
@@ -1,3 +1,3 @@
1
1
  module Tabulo
2
- VERSION = "1.4.0"
2
+ VERSION = "1.4.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tabulo
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Harvey