term_utils 0.1.0 → 0.1.1
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/lib/term_utils/tab.rb +13 -0
- data/lib/term_utils.rb +13 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4f44c82300cc9ff01ac78808c0cd1a649209524c9e4f4fe3ab3d7df4975f9e09
|
|
4
|
+
data.tar.gz: 2f18281f39e37c6f107562c98ac571dd7b4b04380c554e9cd6128af9debfa93e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 439e61d11ffc0b8fe0dd8c12c08ab14e7de5dd09f6bf880f2e56400f1f882109eb9623b378fd99554ed8e743110105314c0a13b16233632b5238829068b2c7a3
|
|
7
|
+
data.tar.gz: 7dfe78887b8c6ba52b03248879e3cad5ab29f03b7a236e5b22d35deb2e23503fc962eb99c0795582e13c09052b37f7db3cc4845e872d2d492977cc9648e90f76
|
data/lib/term_utils/tab.rb
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# This file is part of term_utils.
|
|
2
|
+
#
|
|
3
|
+
# term_utils is free software: you can redistribute it and/or modify
|
|
4
|
+
# it under the terms of the GNU General Public License as published by
|
|
5
|
+
# the Free Software Foundation, version 3 of the License.
|
|
6
|
+
#
|
|
7
|
+
# term_utils is distributed in the hope that it will be useful,
|
|
8
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
9
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
10
|
+
# GNU General Public License for more details.
|
|
11
|
+
#
|
|
12
|
+
# You should have received a copy of the GNU General Public License
|
|
13
|
+
# along with term_utils. If not, see <https://www.gnu.org/licenses/>.
|
|
1
14
|
module TermUtils
|
|
2
15
|
module Tab
|
|
3
16
|
# Represents a table.
|
data/lib/term_utils.rb
CHANGED
|
@@ -1 +1,14 @@
|
|
|
1
|
+
# This file is part of term_utils.
|
|
2
|
+
#
|
|
3
|
+
# term_utils is free software: you can redistribute it and/or modify
|
|
4
|
+
# it under the terms of the GNU General Public License as published by
|
|
5
|
+
# the Free Software Foundation, version 3 of the License.
|
|
6
|
+
#
|
|
7
|
+
# term_utils is distributed in the hope that it will be useful,
|
|
8
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
9
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
10
|
+
# GNU General Public License for more details.
|
|
11
|
+
#
|
|
12
|
+
# You should have received a copy of the GNU General Public License
|
|
13
|
+
# along with term_utils. If not, see <https://www.gnu.org/licenses/>.
|
|
1
14
|
require 'term_utils/tab'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: term_utils
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thomas Baron
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-10-
|
|
11
|
+
date: 2019-10-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: 'Provides terminal utilities like table formatting.
|
|
14
14
|
|
|
@@ -22,7 +22,7 @@ files:
|
|
|
22
22
|
- lib/term_utils/tab.rb
|
|
23
23
|
homepage: https://git.yellowcube.net/tvb/term_utils
|
|
24
24
|
licenses:
|
|
25
|
-
- GPL-3.0
|
|
25
|
+
- GPL-3.0-only
|
|
26
26
|
metadata: {}
|
|
27
27
|
post_install_message:
|
|
28
28
|
rdoc_options: []
|