tabled 0.0.4 → 0.0.5
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/.github/workflows/linters.yml +9 -8
- data/CHANGELOG.md +4 -1
- data/Gemfile.lock +3 -5
- data/lib/tabled.rb +0 -1
- data/tabled.gemspec +1 -2
- metadata +3 -17
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6975cba3c924564332a058b0780101a7e469e25ca6143d9743bd19ea3e45c0c5
|
|
4
|
+
data.tar.gz: d3de8444e683807a3490f2c7fa34e5c0c3538054923036d2981659074e0bc31e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d161770b55f054132a064529a4eb4d420fb9172b8ccff788cba15b337f4110c22adde0ea2a26d36d05bacf99795de62a1e77bebf9b75919868cb04c77f83c194
|
|
7
|
+
data.tar.gz: 2481ed7691562b8f78a17a8cfa5de798787a76385f64d55d545574639a514af4e5ba7ee040893ea3a3b721f57547d2b9b196efec4c044f4edbe61a11672c0371
|
|
@@ -17,31 +17,32 @@ permissions:
|
|
|
17
17
|
contents: read
|
|
18
18
|
|
|
19
19
|
jobs:
|
|
20
|
+
|
|
20
21
|
linters:
|
|
21
|
-
runs-on: ubuntu-latest
|
|
22
22
|
strategy:
|
|
23
23
|
matrix:
|
|
24
24
|
ruby-version: ['3.0']
|
|
25
|
+
runs-on: ubuntu-latest
|
|
25
26
|
steps:
|
|
26
27
|
- uses: actions/checkout@v3
|
|
27
28
|
- name: Set up Ruby
|
|
28
|
-
uses: ruby/setup-ruby@
|
|
29
|
+
uses: ruby/setup-ruby@v1
|
|
29
30
|
with:
|
|
30
31
|
ruby-version: ${{ matrix.ruby-version }}
|
|
31
|
-
bundler-cache: true
|
|
32
|
-
|
|
33
|
-
run: bundle exec rubocop
|
|
32
|
+
bundler-cache: true
|
|
33
|
+
|
|
34
34
|
test:
|
|
35
|
-
runs-on:
|
|
35
|
+
runs-on: ${{ matrix.os }}
|
|
36
36
|
strategy:
|
|
37
37
|
matrix:
|
|
38
|
+
os: [ubuntu-latest, macos-latest]
|
|
38
39
|
ruby-version: ['2.6', '2.7', '3.0']
|
|
39
40
|
steps:
|
|
40
41
|
- uses: actions/checkout@v3
|
|
41
42
|
- name: Set up Ruby
|
|
42
|
-
uses: ruby/setup-ruby@
|
|
43
|
+
uses: ruby/setup-ruby@v1
|
|
43
44
|
with:
|
|
44
45
|
ruby-version: ${{ matrix.ruby-version }}
|
|
45
|
-
bundler-cache: true
|
|
46
|
+
bundler-cache: true
|
|
46
47
|
- name: Run tests
|
|
47
48
|
run: bundle exec rspec
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
### Version 0.0.5 (September 04, 2023)
|
|
2
|
+
1. (Bug fix) Unnecessary dev gem reference removed
|
|
3
|
+
|
|
1
4
|
### Version 0.0.3 (May 23, 2022)
|
|
2
5
|
1. Printing titles of columns
|
|
3
6
|
2. Fixing layout (amount of spaces for row separators)
|
|
@@ -8,4 +11,4 @@
|
|
|
8
11
|
3. Adding row separator
|
|
9
12
|
|
|
10
13
|
### Version 0.0.1 (May 11, 2022)
|
|
11
|
-
1. Basic rendering tables to console
|
|
14
|
+
1. Basic rendering tables to console
|
data/Gemfile.lock
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
tabled (0.0.
|
|
4
|
+
tabled (0.0.5)
|
|
5
5
|
dry-cli
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: http://rubygems.org/
|
|
9
9
|
specs:
|
|
10
10
|
ast (2.4.2)
|
|
11
|
-
byebug (11.1.3)
|
|
12
11
|
diff-lcs (1.5.0)
|
|
13
12
|
docile (1.4.0)
|
|
14
|
-
dry-cli (0.
|
|
13
|
+
dry-cli (1.0.0)
|
|
15
14
|
parallel (1.22.1)
|
|
16
15
|
parser (3.1.2.0)
|
|
17
16
|
ast (~> 2.4.1)
|
|
@@ -57,7 +56,6 @@ PLATFORMS
|
|
|
57
56
|
ruby
|
|
58
57
|
|
|
59
58
|
DEPENDENCIES
|
|
60
|
-
byebug
|
|
61
59
|
rspec
|
|
62
60
|
rubocop
|
|
63
61
|
rubocop-rspec
|
|
@@ -65,4 +63,4 @@ DEPENDENCIES
|
|
|
65
63
|
tabled!
|
|
66
64
|
|
|
67
65
|
BUNDLED WITH
|
|
68
|
-
2.
|
|
66
|
+
2.3.26
|
data/lib/tabled.rb
CHANGED
data/tabled.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'tabled'
|
|
5
|
-
s.version = '0.0.
|
|
5
|
+
s.version = '0.0.5'
|
|
6
6
|
s.summary = 'Library for rendering pretty tables in console'
|
|
7
7
|
s.description = 'Library can be used to render your data to a console. Being quite simple it has many features.'
|
|
8
8
|
s.authors = ['Max Rukomoynikov']
|
|
@@ -19,7 +19,6 @@ Gem::Specification.new do |s|
|
|
|
19
19
|
|
|
20
20
|
s.add_dependency 'dry-cli'
|
|
21
21
|
|
|
22
|
-
s.add_development_dependency 'byebug'
|
|
23
22
|
s.add_development_dependency 'rspec'
|
|
24
23
|
s.add_development_dependency 'rubocop'
|
|
25
24
|
s.add_development_dependency 'rubocop-rspec'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tabled
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Max Rukomoynikov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-09-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dry-cli
|
|
@@ -24,20 +24,6 @@ dependencies:
|
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '0'
|
|
27
|
-
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: byebug
|
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
|
30
|
-
requirements:
|
|
31
|
-
- - ">="
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
version: '0'
|
|
34
|
-
type: :development
|
|
35
|
-
prerelease: false
|
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
-
requirements:
|
|
38
|
-
- - ">="
|
|
39
|
-
- !ruby/object:Gem::Version
|
|
40
|
-
version: '0'
|
|
41
27
|
- !ruby/object:Gem::Dependency
|
|
42
28
|
name: rspec
|
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -140,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
140
126
|
- !ruby/object:Gem::Version
|
|
141
127
|
version: '0'
|
|
142
128
|
requirements: []
|
|
143
|
-
rubygems_version: 3.
|
|
129
|
+
rubygems_version: 3.2.33
|
|
144
130
|
signing_key:
|
|
145
131
|
specification_version: 4
|
|
146
132
|
summary: Library for rendering pretty tables in console
|