Compare commits

...
Sign in to create a new pull request.

8 commits

Author SHA1 Message Date
Mamoru TASAKA
a15dbce6d2 2.3.3 2025-12-06 23:48:57 +09:00
Mamoru TASAKA
0f8a25e69c 2.3.2 2025-09-14 16:22:15 +09:00
Fedora Release Engineering
72a6bf7bf1 Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-25 12:16:30 +00:00
Mamoru TASAKA
c9f30db5b6 2.3.1 2025-06-15 21:58:19 +09:00
Fedora Release Engineering
a4d13598b6 Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-18 22:58:47 +00:00
Mamoru TASAKA
c656b3f675 merge 2025-01-06 10:50:56 +09:00
Mamoru TASAKA
9d5514744d bump release and build 2024-11-29 16:25:07 +09:00
Vít Ondruch
2588a28886 Drop BR: rubygem(pry)
The dependency is removed by Patch2 and every other traces are further
removed upstream in next version.

https://github.com/cucumber/aruba/pull/939
2024-11-28 17:29:09 +01:00
3 changed files with 67 additions and 4 deletions

View file

@ -0,0 +1,42 @@
From bd2aea600f7e989e4da734c3e823c3ce12ce629b Mon Sep 17 00:00:00 2001
From: Matijs van Zuijlen <matijs@matijs.net>
Date: Sun, 6 Apr 2025 23:32:36 +0200
Subject: [PATCH] Update expected diff output to match changes in diff-lcs
Version 1.6.0 of diff-lcs included a bug fix that corrects the hunk
ranges it outputs. This change bumps the minimum version of diff-lcs to
1.6.0 so this change is sure to be included, and updates the
expectations in the cucumber scenarios that depend on exact diff-lcs
output.
---
aruba.gemspec | 1 +
.../cucumber/steps/command/check_output_of_command.feature | 2 +-
.../cucumber/steps/command/check_stderr_of_command.feature | 2 +-
3 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/features/03_testing_frameworks/cucumber/steps/command/check_output_of_command.feature b/features/03_testing_frameworks/cucumber/steps/command/check_output_of_command.feature
index 3266514b..1f0d1997 100644
--- a/features/03_testing_frameworks/cucumber/steps/command/check_output_of_command.feature
+++ b/features/03_testing_frameworks/cucumber/steps/command/check_output_of_command.feature
@@ -353,7 +353,7 @@ Feature: All output of commands which were executed
world" to output string is eq: "hello
worl"
Diff:
- @@ -1,3 +1,3 @@
+ @@ -1,2 +1,2 @@
hello
-worl
+world
diff --git a/features/03_testing_frameworks/cucumber/steps/command/check_stderr_of_command.feature b/features/03_testing_frameworks/cucumber/steps/command/check_stderr_of_command.feature
index cc0e7aad..d3b4c9a9 100644
--- a/features/03_testing_frameworks/cucumber/steps/command/check_stderr_of_command.feature
+++ b/features/03_testing_frameworks/cucumber/steps/command/check_stderr_of_command.feature
@@ -82,7 +82,7 @@ Feature: STDERR of commands which were executed
expected "hello
world!" to output string is eq: ""
Diff:
- @@ -1,2 +1,4 @@
+ @@ -0,0 +1,2 @@
+hello
+world!
"""

View file

@ -3,7 +3,7 @@
Summary: CLI Steps for Cucumber, hand-crafted for you in Aruba
Name: rubygem-%{gem_name}
Version: 2.3.0
Version: 2.3.3
Release: 1%{?dist}
# SPDX confirmed
@ -16,6 +16,9 @@ Source1: %{name}-%{version}-testsuite.tar.gz
Source2: %{gem_name}-create-test-suite-tarball.sh
# Make bundler runtime dependency optional
Patch1: rubygem-aruba-2.0.0-make-bundler-optional.patch
# https://github.com/cucumber/aruba/commit/bd2aea600f7e989e4da734c3e823c3ce12ce629b
# We still use diff-lcs 1.5, revert the above patch for now
Patch2: rubygem-aruba-2.3.1-diff-lcs-1_6-change.patch
BuildRequires: ruby(release)
@ -27,7 +30,6 @@ BuildRequires: rubygem(contracts)
BuildRequires: rubygem(cucumber)
BuildRequires: rubygem(irb)
BuildRequires: rubygem(minitest)
BuildRequires: rubygem(pry)
BuildRequires: rubygem(rspec) >= 3
BuildRequires: rubygem(thor)
BuildRequires: less
@ -60,6 +62,7 @@ done
ln -sf ../lib
popd
%patch -P1 -p1
%patch -P2 -p1 -R
mv ../%{gem_name}-%{version}.gemspec .
@ -161,9 +164,27 @@ popd # from .%%{gem_instdir}
%doc %{gem_instdir}/CHANGELOG.md
%changelog
* Sat Dec 06 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.3.3-1
- 2.3.3
* Sun Sep 14 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.3.2-1
- 2.3.2
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Sun Jun 15 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.3.1-1
- 2.3.1
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
* Fri Jan 03 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.3.0-1
- 2.3.0
* Thu Nov 28 2024 Vít Ondruch <vondruch@redhat.com> - 2.2.0-10
- Drop BR: rubygem(pry)
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.0-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild

View file

@ -1,2 +1,2 @@
SHA512 (aruba-2.3.0.gem) = aa011aef7ffa996585612e1600085bef93920c2b4f718602cb4f4f9532941a1e0b989f6756c8e25af79d0e55554c59ccb9544fcd03ade9e9d44a6744d1b7790c
SHA512 (rubygem-aruba-2.3.0-testsuite.tar.gz) = 0bcbe1315bed0a6e8143d2f7f4f890180af2a170da9d131039faffaf6537d2fc8f3eae363ee19899b1666091a9727b6553082dc6df328014c56611d2055a7fb1
SHA512 (aruba-2.3.3.gem) = 4892651a703d0b2badf15a7f45e461ab1478e53d290fc39e7b0a3fa2a4c4830754bdcabddb38ba3e161bd34071da85aad4f56ccaea5ff8b37a5d74ae1e7ca8c2
SHA512 (rubygem-aruba-2.3.3-testsuite.tar.gz) = a2aa74d9c920dbc3b9709358f5e219886e54f92b85b34de15bd9614308dccd48a3f97bed2f286e8e4dc520259e63063d167a74d72ed70a0635cb8c7348ccb175