Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package rubygem-terminal-table for
openSUSE:Factory checked in at 2022-02-07 23:37:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-terminal-table (Old)
and /work/SRC/openSUSE:Factory/.rubygem-terminal-table.new.1898 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-terminal-table"
Mon Feb 7 23:37:40 2022 rev:3 rq:949075 version:3.0.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-terminal-table/rubygem-terminal-table.changes
2021-07-02 13:28:53.392098228 +0200
+++
/work/SRC/openSUSE:Factory/.rubygem-terminal-table.new.1898/rubygem-terminal-table.changes
2022-02-07 23:38:40.882201827 +0100
@@ -1,0 +2,12 @@
+Tue Jan 25 07:38:25 UTC 2022 - Stephan Kulow <[email protected]>
+
+updated to version 3.0.2
+ see installed History.rdoc
+
+ 3.0.2 / 2021-09-19
+ ==================
+
+ - fix align_column for nil values and colspan
+
+
+-------------------------------------------------------------------
Old:
----
terminal-table-3.0.1.gem
New:
----
terminal-table-3.0.2.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-terminal-table.spec ++++++
--- /var/tmp/diff_new_pack.dYaw38/_old 2022-02-07 23:38:41.386198379 +0100
+++ /var/tmp/diff_new_pack.dYaw38/_new 2022-02-07 23:38:41.390198352 +0100
@@ -1,7 +1,7 @@
#
# spec file for package rubygem-terminal-table
#
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
#
Name: rubygem-terminal-table
-Version: 3.0.1
+Version: 3.0.2
Release: 0
%define mod_name terminal-table
%define mod_full_name %{mod_name}-%{version}
++++++ terminal-table-3.0.1.gem -> terminal-table-3.0.2.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore 2021-05-10 16:16:21.000000000 +0200
+++ new/.gitignore 2021-09-19 20:50:44.000000000 +0200
@@ -5,6 +5,7 @@
doc
vendor
/.bundle
+Gemfile.lock
# tempfiles
*~
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Gemfile.lock new/Gemfile.lock
--- old/Gemfile.lock 2021-05-10 16:16:21.000000000 +0200
+++ new/Gemfile.lock 1970-01-01 01:00:00.000000000 +0100
@@ -1,49 +0,0 @@
-PATH
- remote: .
- specs:
- terminal-table (3.0.1)
- unicode-display_width (>= 1.1.1, < 3)
-
-GEM
- remote: https://rubygems.org/
- specs:
- coderay (1.1.3)
- diff-lcs (1.4.4)
- method_source (1.0.0)
- pry (0.13.1)
- coderay (~> 1.1)
- method_source (~> 1.0)
- rake (13.0.1)
- rspec (3.10.0)
- rspec-core (~> 3.10.0)
- rspec-expectations (~> 3.10.0)
- rspec-mocks (~> 3.10.0)
- rspec-core (3.10.0)
- rspec-support (~> 3.10.0)
- rspec-expectations (3.10.0)
- diff-lcs (>= 1.2.0, < 2.0)
- rspec-support (~> 3.10.0)
- rspec-mocks (3.10.0)
- diff-lcs (>= 1.2.0, < 2.0)
- rspec-support (~> 3.10.0)
- rspec-support (3.10.0)
- term-ansicolor (1.7.1)
- tins (~> 1.0)
- tins (1.0.1)
- unicode-display_width (2.0.0)
-
-PLATFORMS
- ruby
- x86_64-linux
-
-DEPENDENCIES
- bundler (~> 2)
- pry
- rake (~> 13.0)
- rspec (>= 3.0)
- term-ansicolor
- terminal-table!
- tins (~> 1.0.0)
-
-BUNDLED WITH
- 2.2.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/History.rdoc new/History.rdoc
--- old/History.rdoc 2021-05-10 16:16:21.000000000 +0200
+++ new/History.rdoc 2021-09-19 20:50:44.000000000 +0200
@@ -1,3 +1,8 @@
+3.0.2 / 2021-09-19
+==================
+
+- fix align_column for nil values and colspan
+
3.0.1 / 2021-05-10
==================
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/terminal-table/table.rb
new/lib/terminal-table/table.rb
--- old/lib/terminal-table/table.rb 2021-05-10 16:16:21.000000000 +0200
+++ new/lib/terminal-table/table.rb 2021-09-19 20:50:44.000000000 +0200
@@ -27,10 +27,8 @@
# Align column _n_ to the given _alignment_ of :center, :left, or :right.
def align_column n, alignment
- r = rows
- column(n).each_with_index do |col, i|
- cell = r[i][n]
- next unless cell
+ # nil forces the column method to return the cell itself
+ column(n, nil).each do |cell|
cell.alignment = alignment unless cell.alignment?
end
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/terminal-table/version.rb
new/lib/terminal-table/version.rb
--- old/lib/terminal-table/version.rb 2021-05-10 16:16:21.000000000 +0200
+++ new/lib/terminal-table/version.rb 2021-09-19 20:50:44.000000000 +0200
@@ -1,5 +1,5 @@
module Terminal
class Table
- VERSION = '3.0.1'
+ VERSION = '3.0.2'
end
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2021-05-10 16:16:21.000000000 +0200
+++ new/metadata 2021-09-19 20:50:44.000000000 +0200
@@ -1,7 +1,7 @@
--- !ruby/object:Gem::Specification
name: terminal-table
version: !ruby/object:Gem::Version
- version: 3.0.1
+ version: 3.0.2
platform: ruby
authors:
- TJ Holowaychuk
@@ -9,7 +9,7 @@
autorequire:
bindir: bin
cert_chain: []
-date: 2021-05-10 00:00:00.000000000 Z
+date: 2021-09-19 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: bundler
@@ -111,7 +111,6 @@
- ".github/workflows/ci.yml"
- ".gitignore"
- Gemfile
-- Gemfile.lock
- History.rdoc
- LICENSE.txt
- Manifest