Hello community, here is the log from the commit of package rubygem-test-unit for openSUSE:Factory checked in at 2016-05-29 03:12:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-test-unit (Old) and /work/SRC/openSUSE:Factory/.rubygem-test-unit.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-test-unit" Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-test-unit/rubygem-test-unit.changes 2016-04-28 16:56:23.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 2016-05-29 03:13:14.000000000 +0200 @@ -1,0 +2,19 @@ +Sat May 21 04:39:26 UTC 2016 - [email protected] + +- updated to version 3.1.9 + see installed news.md + + ## 3.1.9 - 2016-05-20 {#version-3-1-9} + + ### Fixes + + * Fixed conflict with test-unit-power_assert. + [GitHub#120][Patch by Kazuki Tsujimoto] + + * Fixed a bug that path in `$LOAD_PATH` may be removed. + + ### Thanks + + * Kazuki Tsujimoto + +------------------------------------------------------------------- Old: ---- test-unit-3.1.8.gem New: ---- test-unit-3.1.9.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-test-unit.spec ++++++ --- /var/tmp/diff_new_pack.8aTwUS/_old 2016-05-29 03:13:16.000000000 +0200 +++ /var/tmp/diff_new_pack.8aTwUS/_new 2016-05-29 03:13:16.000000000 +0200 @@ -24,7 +24,7 @@ # Name: rubygem-test-unit -Version: 3.1.8 +Version: 3.1.9 Release: 0 %define mod_name test-unit %define mod_full_name %{mod_name}-%{version} ++++++ test-unit-3.1.8.gem -> test-unit-3.1.9.gem ++++++ Files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/doc/text/news.md new/doc/text/news.md --- old/doc/text/news.md 2016-03-19 15:20:52.000000000 +0100 +++ new/doc/text/news.md 2016-05-20 15:08:01.000000000 +0200 @@ -1,5 +1,18 @@ # News +## 3.1.9 - 2016-05-20 {#version-3-1-9} + +### Fixes + + * Fixed conflict with test-unit-power_assert. + [GitHub#120][Patch by Kazuki Tsujimoto] + + * Fixed a bug that path in `$LOAD_PATH` may be removed. + +### Thanks + + * Kazuki Tsujimoto + ## 3.1.8 - 2016-03-19 {#version-3-1-8} ### Improvements diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/test/unit/collector/load.rb new/lib/test/unit/collector/load.rb --- old/lib/test/unit/collector/load.rb 2016-03-19 15:20:52.000000000 +0100 +++ new/lib/test/unit/collector/load.rb 2016-05-20 15:08:01.000000000 +0200 @@ -131,6 +131,8 @@ return yield if path.nil? path = path.to_s + return yield if $LOAD_PATH.index(path) + begin $LOAD_PATH.unshift(path) yield diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/test/unit/util/backtracefilter.rb new/lib/test/unit/util/backtracefilter.rb --- old/lib/test/unit/util/backtracefilter.rb 2016-03-19 15:20:52.000000000 +0100 +++ new/lib/test/unit/util/backtracefilter.rb 2016-05-20 15:08:01.000000000 +0200 @@ -12,8 +12,8 @@ TESTUNIT_RB_FILE = /\.rb\Z/ POWERASSERT_PREFIX = - defined?(PowerAssert) ? - PowerAssert.method(:start).source_location[0].split(TESTUNIT_FILE_SEPARATORS)[0..-2] : + defined?(::PowerAssert) ? + ::PowerAssert.method(:start).source_location[0].split(TESTUNIT_FILE_SEPARATORS)[0..-2] : nil module_function diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/test/unit/version.rb new/lib/test/unit/version.rb --- old/lib/test/unit/version.rb 2016-03-19 15:20:52.000000000 +0100 +++ new/lib/test/unit/version.rb 2016-05-20 15:08:01.000000000 +0200 @@ -1,5 +1,5 @@ module Test module Unit - VERSION = '3.1.8' + VERSION = '3.1.9' end end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2016-03-19 15:20:52.000000000 +0100 +++ new/metadata 2016-05-20 15:08:01.000000000 +0200 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: test-unit version: !ruby/object:Gem::Version - version: 3.1.8 + version: 3.1.9 platform: ruby authors: - Kouhei Sutou @@ -9,7 +9,7 @@ autorequire: bindir: bin cert_chain: [] -date: 2016-03-19 00:00:00.000000000 Z +date: 2016-05-20 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: power_assert @@ -234,44 +234,44 @@ specification_version: 4 summary: An xUnit family unit testing framework for Ruby. test_files: -- test/test-code-snippet.rb -- test/test-fault-location-detector.rb -- test/test-attribute.rb -- test/test-priority.rb -- test/test-color-scheme.rb -- test/test-failure.rb -- test/test-color.rb - test/ui/test_testrunmediator.rb +- test/util/test-method-owner-finder.rb +- test/util/test-output.rb +- test/util/test_observable.rb +- test/util/test_procwrapper.rb +- test/util/test_backtracefilter.rb +- test/test-test-result.rb +- test/test-assertions.rb - test/test-attribute-matcher.rb -- test/test-test-suite.rb -- test/test-test-suite-creator.rb -- test/test-diff.rb -- test/test-emacs-runner.rb -- test/test-data.rb +- test/test-code-snippet.rb +- test/collector/test_objectspace.rb +- test/collector/test-descendant.rb +- test/collector/test-load.rb +- test/collector/test_dir.rb - test/fixtures/header.csv -- test/fixtures/header.tsv -- test/fixtures/no-header.tsv +- test/fixtures/header-label.csv - test/fixtures/plus.csv +- test/fixtures/no-header.tsv - test/fixtures/no-header.csv - test/fixtures/header-label.tsv -- test/fixtures/header-label.csv -- test/test-assertions.rb -- test/test-test-result.rb +- test/fixtures/header.tsv +- test/test-failure.rb +- test/test-test-suite.rb +- test/run-test.rb +- test/test-emacs-runner.rb - test/testunit-test-util.rb -- test/collector/test-load.rb -- test/collector/test_dir.rb -- test/collector/test_objectspace.rb -- test/collector/test-descendant.rb +- test/test-fault-location-detector.rb +- test/test-test-case.rb +- test/test-omission.rb +- test/test-notification.rb +- test/test-fixture.rb +- test/test-test-suite-creator.rb +- test/test-diff.rb +- test/test-color-scheme.rb +- test/test-data.rb - test/test-error.rb -- test/run-test.rb +- test/test-priority.rb - test/test-pending.rb -- test/test-fixture.rb -- test/util/test-output.rb -- test/util/test-method-owner-finder.rb -- test/util/test_observable.rb -- test/util/test_procwrapper.rb -- test/util/test_backtracefilter.rb -- test/test-notification.rb -- test/test-omission.rb -- test/test-test-case.rb +- test/test-color.rb +- test/test-attribute.rb has_rdoc:
