commit rubygem-test-unit for openSUSE:Factory

2019-01-21 Thread root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2019-01-21 10:25:36

Comparing /work/SRC/openSUSE:Factory/rubygem-test-unit (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-test-unit.new.28833 (New)


Package is "rubygem-test-unit"

Mon Jan 21 10:25:36 2019 rev:33 rq:656372 version:3.2.9

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-test-unit/rubygem-test-unit.changes  
2018-05-16 18:44:49.896272965 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-test-unit.new.28833/rubygem-test-unit.changes
   2019-01-21 10:25:38.137732021 +0100
@@ -1,0 +2,77 @@
+Sat Dec  8 16:32:16 UTC 2018 - Stephan Kulow 
+
+- updated to version 3.2.9
+ see installed news.md
+
+  ## 3.2.9 - 2018-12-01 {#version-3-2-9}
+  
+  ### Improvements
+  
+* Added support for data generation by method. `data_#{test_name}`
+  is called to generate data for `test_name` test.
+  
+* Added support for data matrix generation.
+  
+  Example:
+  
+  ```ruby
+  data(:a, [0, 1, 2])
+  data(:b, [:x, :y])
+  def test_data(data)
+  end
+  ```
+  
+  This example generates the following data matrix:
+  
+* label: `"a: 0, b: :x"`, data: `{a: 0, b: :x}`
+* label: `"a: 0, b: :y"`, data: `{a: 0, b: :y}`
+* label: `"a: 1, b: :x"`, data: `{a: 1, b: :x}`
+* label: `"a: 1, b: :y"`, data: `{a: 1, b: :y}`
+* label: `"a: 2, b: :x"`, data: `{a: 2, b: :x}`
+* label: `"a: 2, b: :y"`, data: `{a: 2, b: :y}`
+  
+* Added `Test::Unit::TestCase#data` that returns the current data.
+  
+* Added support for using test method that doesn't have no
+  parameters as data driven test.
+  
+  Example:
+  
+  ```ruby
+  data("label", :value)
+  def test_data # Available since this release
+p data # :value
+  end
+  ```
+  
+* Added support for `:keep` option to `Test::Unit::TestCase.data`.
+  
+* Added support for `:group` option to
+  `Test::Unit::TestCase.data`. It's useful to generate multiple data
+  matrix groups.
+  
+  ```ruby
+  # Group1
+  data(:a, [0, 1, 2], group: :g1)
+  data(:b, [:x, :y], group: :g1)
+  # Group2
+  data(:a, [:x, :y], group: :g2)
+  data(:c, [-1, -2], group: :g2)
+  def test_data(data)
+  end
+  ```
+  
+  This example generates the following data matrix:
+  
+* label: `"group: :g1, a: 0, b: :x"`, data: `{a: 0, b: :x}`
+* label: `"group: :g1, a: 0, b: :y"`, data: `{a: 0, b: :y}`
+* label: `"group: :g1, a: 1, b: :x"`, data: `{a: 1, b: :x}`
+* label: `"group: :g1, a: 1, b: :y"`, data: `{a: 1, b: :y}`
+* label: `"group: :g1, a: 2, b: :x"`, data: `{a: 2, b: :x}`
+* label: `"group: :g1, a: 2, b: :y"`, data: `{a: 2, b: :y}`
+* label: `"group: :g2, a: :x, b: -1"`, data: `{a: :x, b: -1}`
+* label: `"group: :g2, a: :x, b: -2"`, data: `{a: :x, b: -2}`
+* label: `"group: :g2, a: :y, b: -1"`, data: `{a: :y, b: -1}`
+* label: `"group: :g2, a: :y, b: -2"`, data: `{a: :y, b: -2}`
+
+---

Old:

  test-unit-3.2.8.gem

New:

  test-unit-3.2.9.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.fwFpwk/_old  2019-01-21 10:25:39.385730649 +0100
+++ /var/tmp/diff_new_pack.fwFpwk/_new  2019-01-21 10:25:39.385730649 +0100
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-test-unit
-Version:3.2.8
+Version:3.2.9
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}

++ test-unit-3.2.8.gem -> test-unit-3.2.9.gem ++
Binary 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.md2018-05-13 04:09:16.0 +0200
+++ new/doc/text/news.md2018-12-01 08:57:50.0 +0100
@@ -1,5 +1,76 @@
 # News
 
+## 3.2.9 - 2018-12-01 {#version-3-2-9}
+
+### Improvements
+
+  * Added support for data generation by method. `data_#{test_name}`
+is called to generate data for `test_name` test.
+
+  * Added support for data matrix generation.
+
+Example:
+
+```ruby
+data(:a, [0, 1, 2])
+data(:b, [:x, :y])
+def test_data(data)
+end
+```
+
+This example generates the 

commit rubygem-test-unit for openSUSE:Factory

2018-05-16 Thread root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2018-05-16 18:43:16

Comparing /work/SRC/openSUSE:Factory/rubygem-test-unit (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-test-unit.new (New)


Package is "rubygem-test-unit"

Wed May 16 18:43:16 2018 rev:32 rq:609083 version:3.2.8

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-test-unit/rubygem-test-unit.changes  
2017-12-20 10:40:15.293291397 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2018-05-16 18:44:49.896272965 +0200
@@ -1,0 +2,13 @@
+Wed May 16 08:20:18 UTC 2018 - factory-a...@kulow.org
+
+- updated to version 3.2.8
+ see installed news.md
+
+  ## 3.2.8 - 2018-05-13 {#version-3-2-8}
+  
+  ### Improvements
+  
+* [UI][console]: Changed to put code snippet before backtrace on
+  reverse mode.
+
+---

Old:

  test-unit-3.2.7.gem

New:

  test-unit-3.2.8.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.Tm1hMK/_old  2018-05-16 18:44:50.444253162 +0200
+++ /var/tmp/diff_new_pack.Tm1hMK/_new  2018-05-16 18:44:50.448253017 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-test-unit
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # 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-test-unit
-Version:3.2.7
+Version:3.2.8
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}
@@ -36,7 +36,7 @@
 Source: https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml
 Summary:An xUnit family unit testing framework for Ruby
-License:Ruby and Python-2.0
+License:Ruby AND Python-2.0
 Group:  Development/Languages/Ruby
 
 %description

++ test-unit-3.2.7.gem -> test-unit-3.2.8.gem ++
Binary 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.md2017-12-11 16:23:14.0 +0100
+++ new/doc/text/news.md2018-05-13 04:09:16.0 +0200
@@ -1,5 +1,12 @@
 # News
 
+## 3.2.8 - 2018-05-13 {#version-3-2-8}
+
+### Improvements
+
+  * [UI][console]: Changed to put code snippet before backtrace on
+reverse mode.
+
 ## 3.2.7 - 2017-12-12 {#version-3-2-7}
 
 ### Improvements
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/test/unit/ui/console/testrunner.rb 
new/lib/test/unit/ui/console/testrunner.rb
--- old/lib/test/unit/ui/console/testrunner.rb  2017-12-11 16:23:15.0 
+0100
+++ new/lib/test/unit/ui/console/testrunner.rb  2018-05-13 04:09:16.0 
+0200
@@ -225,27 +225,47 @@
   end
 
   def output_fault_backtrace(fault)
-snippet_is_shown = false
 detector = FaultLocationDetector.new(fault, @code_snippet_fetcher)
 backtrace = fault.location
 # workaround for test-spec. :<
 # see also GitHub:#22
 backtrace ||= []
-backtrace = backtrace.reverse if @reverse_output
+
+code_snippet_backtrace_index = nil
+code_snippet_lines = nil
 backtrace.each_with_index do |entry, i|
-  output(entry)
-  next if snippet_is_shown
   next unless detector.target?(entry)
   file, line_number, = detector.split_backtrace_entry(entry)
-  snippet_is_shown = output_code_snippet(file, line_number,
- fault_color(fault))
+  lines = fetch_code_snippet(file, line_number)
+  unless lines.empty?
+code_snippet_backtrace_index = i
+code_snippet_lines = lines
+break
+  end
+end
+
+if @reverse_output
+  backtrace.each_with_index.reverse_each do |entry, i|
+if i == code_snippet_backtrace_index
+  output_code_snippet(code_snippet_lines, fault_color(fault))
+end
+output(entry)
+  end
+else
+  backtrace.each_with_index do |entry, i|
+output(entry)
+if i == code_snippet_backtrace_index
+  output_code_snippet(code_snippet_lines, fault_color(fault))
+   

commit rubygem-test-unit for openSUSE:Factory

2017-12-20 Thread root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2017-12-20 10:40:10

Comparing /work/SRC/openSUSE:Factory/rubygem-test-unit (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-test-unit.new (New)


Package is "rubygem-test-unit"

Wed Dec 20 10:40:10 2017 rev:31 rq:558534 version:3.2.7

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-test-unit/rubygem-test-unit.changes  
2017-09-22 21:34:30.231671797 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2017-12-20 10:40:15.293291397 +0100
@@ -1,0 +2,7 @@
+Tue Dec 19 09:33:20 UTC 2017 - bgeu...@suse.com
+
+- Update to 3.2.7
+
+  No changelog found
+
+---

Old:

  test-unit-3.2.6.gem

New:

  test-unit-3.2.7.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.OBDvxy/_old  2017-12-20 10:40:16.549200347 +0100
+++ /var/tmp/diff_new_pack.OBDvxy/_new  2017-12-20 10:40:16.553200057 +0100
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-test-unit
-Version:3.2.6
+Version:3.2.7
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}

++ test-unit-3.2.6.gem -> test-unit-3.2.7.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2017-09-21 07:42:46.0 +0200
+++ new/README.md   2017-12-11 16:23:14.0 +0100
@@ -1,7 +1,7 @@
 # test-unit
 
-[![](https://badge.fury.io/rb/test-unit.png)](http://badge.fury.io/rb/test-unit)
-[![](https://travis-ci.org/test-unit/test-unit.png?branch=master)](https://travis-ci.org/test-unit/test-unit)
+[![](https://badge.fury.io/rb/test-unit.svg)](http://badge.fury.io/rb/test-unit)
+[![](https://travis-ci.org/test-unit/test-unit.svg?branch=master)](https://travis-ci.org/test-unit/test-unit)
 
 * http://test-unit.github.io/
 * https://github.com/test-unit/test-unit
Binary 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.md2017-09-21 07:42:46.0 +0200
+++ new/doc/text/news.md2017-12-11 16:23:14.0 +0100
@@ -1,5 +1,34 @@
 # News
 
+## 3.2.7 - 2017-12-12 {#version-3-2-7}
+
+### Improvements
+
+  * Added source code link to gemspec.
+[GitHub#157][Patch by Grey Baker]
+
+  * Changed to use SVG image for badges in README.
+[GitHub#158][Patch by Olle Jonsson]
+
+  * [UI][console]: Added `--reverse-output` option to output fault
+details in reverse like Ruby 2.5. It's enabled by default only for
+tty output.
+
+### Fixes
+
+  * Fixed a typo.
+[GitHub#156][Patch by masa kunikata]
+
+  * [UI][console]: Fixed a bug that broken align in verbose mode.
+
+### Thanks
+
+  * masa kunikata
+
+  * Grey Baker
+
+  * Olle Jonsson
+
 ## 3.2.6 - 2017-09-21 {#version-3-2-6}
 
 ### Improvements
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/test/unit/autorunner.rb 
new/lib/test/unit/autorunner.rb
--- old/lib/test/unit/autorunner.rb 2017-09-21 07:42:46.0 +0200
+++ new/lib/test/unit/autorunner.rb 2017-12-11 16:23:15.0 +0100
@@ -139,7 +139,7 @@
   attr_accessor :default_test_paths
   attr_accessor :pattern, :exclude, :base, :workdir
   attr_accessor :color_scheme, :listeners
-  attr_writer :stop_on_failuere
+  attr_writer :stop_on_failure
   attr_writer :runner, :collector
 
   def initialize(standalone)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/test/unit/runner/console.rb 
new/lib/test/unit/runner/console.rb
--- old/lib/test/unit/runner/console.rb 2017-09-21 07:42:46.0 +0200
+++ new/lib/test/unit/runner/console.rb 2017-12-11 16:23:15.0 +0100
@@ -1,3 +1,22 @@
+# Copyright (C) 2008-2017  Kouhei Sutou 
+#
+# License: Ruby OR LGPL-2.1+
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; 

commit rubygem-test-unit for openSUSE:Factory

2017-09-22 Thread root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2017-09-22 21:34:30

Comparing /work/SRC/openSUSE:Factory/rubygem-test-unit (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-test-unit.new (New)


Package is "rubygem-test-unit"

Fri Sep 22 21:34:30 2017 rev:30 rq:527706 version:3.2.6

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-test-unit/rubygem-test-unit.changes  
2017-08-16 16:11:57.780127961 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2017-09-22 21:34:30.231671797 +0200
@@ -1,0 +2,17 @@
+Thu Sep 21 09:08:25 UTC 2017 - co...@suse.com
+
+- updated to version 3.2.6
+ see installed news.md
+
+  ## 3.2.6 - 2017-09-21 {#version-3-2-6}
+  
+  ### Improvements
+  
+* Changed test file require failure to error from omission.
+  [GitHub#154][Patch by naofumi-fujii]
+  
+  ### Thanks
+  
+* naofumi-fujii
+
+---

Old:

  test-unit-3.2.5.gem

New:

  test-unit-3.2.6.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.8jjRIi/_old  2017-09-22 21:34:30.803591290 +0200
+++ /var/tmp/diff_new_pack.8jjRIi/_new  2017-09-22 21:34:30.807590726 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-test-unit
-Version:3.2.5
+Version:3.2.6
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}
@@ -33,7 +33,7 @@
 BuildRequires:  %{ruby}
 BuildRequires:  ruby-macros >= 5
 Url:http://test-unit.github.io/
-Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source: https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml
 Summary:An xUnit family unit testing framework for Ruby
 License:Ruby and Python-2.0

++ test-unit-3.2.5.gem -> test-unit-3.2.6.gem ++
Binary 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.md2017-06-24 15:21:53.0 +0200
+++ new/doc/text/news.md2017-09-21 07:42:46.0 +0200
@@ -1,5 +1,16 @@
 # News
 
+## 3.2.6 - 2017-09-21 {#version-3-2-6}
+
+### Improvements
+
+  * Changed test file require failure to error from omission.
+[GitHub#154][Patch by naofumi-fujii]
+
+### Thanks
+
+  * naofumi-fujii
+
 ## 3.2.5 - 2017-06-24 {#version-3-2-5}
 
 ### 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 2017-06-24 15:21:53.0 +0200
+++ new/lib/test/unit/collector/load.rb 2017-09-21 07:42:46.0 +0200
@@ -166,11 +166,11 @@
   return if @require_failed_infos.empty?
 
   require_failed_infos = @require_failed_infos
-  require_failed_omissions = Class.new(Test::Unit::TestCase)
-  require_failed_omissions.class_eval do
+  require_failed_errors = Class.new(Test::Unit::TestCase)
+  require_failed_errors.class_eval do
 class << self
   def name
-"RequireFailedOmissions"
+"RequireFailedErrors"
   end
 end
 
@@ -180,21 +180,18 @@
   normalized_path = normalized_path.gsub(/\A_+/, '')
   exception = info[:exception]
   define_method("test_require_#{normalized_path}") do
-@require_failed_exception = exception
-omit("failed to load: <#{path}>: <#{exception.message}>")
+raise(exception.class,
+  "failed to load <#{path}>: #{exception.message}",
+  exception.backtrace)
   end
 end
 
 def priority
   100
 end
-
-def filter_backtrace(location)
-  super(@require_failed_exception.backtrace)
-end
   end
 
-  add_suite(test_suites, require_failed_omissions.suite)
+  add_suite(test_suites, require_failed_errors.suite)
 end
   end
 end
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.rb2017-06-24 15:21:53.0 +0200
+++ new/lib/test/unit/version.rb2017-09-21 07:42:46.0 +0200
@@ -1,5 +1,5 @@
 module Test
   module Unit
-VERSION = "3.2.5"
+VERSION = "3.2.6"
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 

commit rubygem-test-unit for openSUSE:Factory

2017-08-16 Thread root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2017-08-16 16:11:57

Comparing /work/SRC/openSUSE:Factory/rubygem-test-unit (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-test-unit.new (New)


Package is "rubygem-test-unit"

Wed Aug 16 16:11:57 2017 rev:29 rq:514217 version:3.2.5

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-test-unit/rubygem-test-unit.changes  
2017-06-08 15:00:17.889928447 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2017-08-16 16:11:57.780127961 +0200
@@ -1,0 +2,8 @@
+Wed Jul 26 06:02:54 UTC 2017 - mschnit...@suse.com
+
+- updated to version 3.2.5
+
+  * Supported `--enable-frozen-string-literal` `ruby` option.
+[GitHub#149][Reported by Pat Allan]
+
+---

Old:

  test-unit-3.2.4.gem

New:

  test-unit-3.2.5.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.1SkI79/_old  2017-08-16 16:11:58.420038139 +0200
+++ /var/tmp/diff_new_pack.1SkI79/_new  2017-08-16 16:11:58.428037016 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-test-unit
-Version:3.2.4
+Version:3.2.5
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}

++ test-unit-3.2.4.gem -> test-unit-3.2.5.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Rakefile new/Rakefile
--- old/Rakefile2017-05-23 04:40:04.0 +0200
+++ new/Rakefile2017-06-24 15:21:53.0 +0200
@@ -1,6 +1,6 @@
 # -*- ruby -*-
 #
-# Copyright (C) 2008-2013  Kouhei Sutou 
+# Copyright (C) 2008-2017  Kouhei Sutou 
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -18,6 +18,15 @@
 
 Encoding.default_internal = "UTF-8" if defined?(Encoding.default_internal)
 
+# TODO: Remove me when we drop Ruby 1.9 support.
+unless "".respond_to?(:b)
+  class String
+def b
+  dup.force_encoding("ASCII-8BIT")
+end
+  end
+end
+
 require "erb"
 require "yaml"
 require "rubygems"
Binary 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.md2017-05-23 04:40:04.0 +0200
+++ new/doc/text/news.md2017-06-24 15:21:53.0 +0200
@@ -1,5 +1,16 @@
 # News
 
+## 3.2.5 - 2017-06-24 {#version-3-2-5}
+
+### Improvements
+
+  * Supported `--enable-frozen-string-literal` `ruby` option.
+[GitHub#149][Reported by Pat Allan]
+
+### Thanks
+
+  * Pat Allan
+
 ## 3.2.4 - 2017-05-23 {#version-3-2-4}
 
 ### Improvements
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/test/unit/assertions.rb 
new/lib/test/unit/assertions.rb
--- old/lib/test/unit/assertions.rb 2017-05-23 04:40:04.0 +0200
+++ new/lib/test/unit/assertions.rb 2017-06-24 15:21:53.0 +0200
@@ -153,8 +153,8 @@
   assertion_message = message
 else
   error_message = "assertion message must be String, Proc or "
-  error_message << "#{AssertionMessage}: "
-  error_message << "<#{message.inspect}>(<#{message.class}>)"
+  error_message += "#{AssertionMessage}: "
+  error_message += "<#{message.inspect}>(<#{message.class}>)"
   raise ArgumentError, error_message, filter_backtrace(caller)
 end
 assertion_message ||= build_message(message,
@@ -192,8 +192,8 @@
 assertion_message = message
   else
 error_message = "assertion message must be String, Proc or "
-error_message << "#{AssertionMessage}: "
-error_message << "<#{message.inspect}>(<#{message.class}>)"
+error_message += "#{AssertionMessage}: "
+error_message += "<#{message.inspect}>(<#{message.class}>)"
 raise ArgumentError, error_message, filter_backtrace(caller)
   end
   assert_block("refute should not be called with a block.") do
@@ -362,7 +362,7 @@
   else
 klasses = [klass]
   end
-  assert_block("The first parameter to assert_not_instance_of should 
be " <<
+  assert_block("The first parameter to assert_not_instance_of should 
be " +
"a Class or an Array of Class.") do
 klasses.all? {|k| k.is_a?(Class)}
   end
@@ -965,7 +965,7 @@
 end
 
 if relation_format
- 

commit rubygem-test-unit for openSUSE:Factory

2017-06-08 Thread root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2017-06-08 15:00:16

Comparing /work/SRC/openSUSE:Factory/rubygem-test-unit (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-test-unit.new (New)


Package is "rubygem-test-unit"

Thu Jun  8 15:00:16 2017 rev:28 rq:497677 version:3.2.4

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-test-unit/rubygem-test-unit.changes  
2016-12-11 13:28:44.343664153 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2017-06-08 15:00:17.889928447 +0200
@@ -1,0 +2,70 @@
+Tue May 23 10:24:20 UTC 2017 - co...@suse.com
+
+- updated to version 3.2.4
+ see installed news.md
+
+  ## 3.2.4 - 2017-05-23 {#version-3-2-4}
+  
+  ### Improvements
+  
+* Updated tests for Ruby 2.4. [GitHUb#136][Patch by Kazuki Tsujimoto]
+  
+* Supported power\_assert 1.0.0. [GitHub#137][Patch by Kazuki Tsujimoto]
+  
+* Added the getting started document.
+  [GitHub#139][GitHub#141][Patch by Hiroyuki Sato]
+  
+* Added the document for `attribute`.
+  [GitHub#143][Patch by Fumiaki MATSUSHIMA]
+  
+* Improved a link for GitHub. [GitHub#144][Patch by rochefort]
+  
+* Updated `.travis.yml`. [GitHub#145][Patch by Jun Aruga]
+  
+  ### Fixes
+  
+* Fixed a contributor name. [GitHub#131][Patch by Akira Matsuda]
+  
+* Fixed typos in document. [GitHub#132][Patch by Akira Matsuda]
+  
+* Fixed typos in document. [GitHub#134][Patch by Yuji Yaginuma]
+  
+* Fixed a bug that data label with "(" isn't supported.
+  [GitHub#135][Reported by Kazuki Tsujimoto]
+  
+* Fixed assertion message in English.
+  [GitHub#133][Reported by Khalil Fazal]
+  
+* Fixed a typo in typo fix. [GitHub#138][Patch by kami]
+  
+* Fixed a bug that target location finder may return wrong
+  location. [GitHub#146][Patch by Yuki Ito]
+  
+* Fixed a bug that `--no-show-detail-immediately` raises an error.
+  [GitHub#147][Reported by MSP-Greg]
+  
+  ### Thanks
+  
+* Akira Matsuda
+  
+* Yuji Yaginuma
+  
+* Kazuki Tsujimoto
+  
+* Khalil Fazal
+  
+* kami
+  
+* Hiroyuki Sato
+  
+* Fumiaki MATSUSHIMA
+  
+* rochefort
+  
+* Jun Aruga
+  
+* Yuki Ito
+  
+* MSP-Greg
+
+---

Old:

  test-unit-3.2.3.gem

New:

  test-unit-3.2.4.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.XrjXZ5/_old  2017-06-08 15:00:19.361720730 +0200
+++ /var/tmp/diff_new_pack.XrjXZ5/_new  2017-06-08 15:00:19.365720166 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-test-unit
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # 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-test-unit
-Version:3.2.3
+Version:3.2.4
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}

++ test-unit-3.2.3.gem -> test-unit-3.2.4.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2016-11-25 13:44:09.0 +0100
+++ new/README.md   2017-05-23 04:40:04.0 +0200
@@ -34,7 +34,7 @@
 
 ## How To
 
-* [How To](doc/text/how-to.md) (link for GitHub)
+* [How 
To](https://github.com/test-unit/test-unit/blob/master/doc/text/how-to.md) 
(link for GitHub)
 * {file:doc/text/how-to.md How To} (link for YARD)
 
 ## Install
@@ -77,7 +77,7 @@
 
 ### Images
 
-* Mayu & Co.: kinotan icons: http://cocooon.com/kinotan/
+* Mayu & Co.: kinotan icons
 
 ## Thanks
 
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/doc/text/getting-started.md 
new/doc/text/getting-started.md
--- old/doc/text/getting-started.md 1970-01-01 01:00:00.0 +0100
+++ new/doc/text/getting-started.md 2017-05-23 04:40:04.0 +0200
@@ -0,0 +1,246 @@
+## 1. First step of the `test-unit`
+
+Let's getting start `test-unit`.
+
+This document creates an example gem package called `sample` with the 
`test-unit` testing framework.
+
+## 2. Install bundler and test-unit.
+
+* First, install the `bundler` gem for generating gem template.
+* Second, install the `test-unit` itself.
+
+~~~
+!!!plain
+gem install bundler
+gem install test-unit
+~~~
+
+The `gem list` command output installed packages.
+You will find the following lines.
+
+~~~

commit rubygem-test-unit for openSUSE:Factory

2016-11-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2016-11-10 13:22:43

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-08-26 23:16:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2016-11-10 13:22:45.0 +0100
@@ -1,0 +2,45 @@
+Wed Nov  2 05:48:33 UTC 2016 - co...@suse.com
+
+- updated to version 3.2.2
+ see installed news.md
+
+  ## 3.2.3 - 2016-11-02 {#version-3-2-2}
+  
+  ### Improvements
+  
+* Improved Travis CI configuration.
+  [GitHub#123][Patch by Ryunosuke SEATO]
+  
+* Supported Java native exception.
+  [GitHub#126][Reported by Bob Saveland]
+  
+  ### Fixes
+  
+* doc: Fixed markup. [GitHub#127][Patch by Tomohiro Hashidate]
+  
+* Fixed a bug that `--location=LINE` may not detect a test when
+  fixtures are defined before any tests:
+  
+  1 class MyTestCase < Test::Unit::TestCase
+  2   setup do
+  3   end
+  4
+  5   test "xxx" do
+  6   end
+  7 end
+  
+  `--location=5` couldn't find the `xxx` test.
+  
+  [Reported by Ryota Sasabe]
+  
+  ### Thanks
+  
+* Ryunosuke Sato
+  
+* Tomohiro Hashidate
+  
+* Bob Saveland
+  
+* Ryota Sasabe
+
+---

Old:

  test-unit-3.2.1.gem

New:

  test-unit-3.2.2.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.ZabOFQ/_old  2016-11-10 13:22:46.0 +0100
+++ /var/tmp/diff_new_pack.ZabOFQ/_new  2016-11-10 13:22:46.0 +0100
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-test-unit
-Version:3.2.1
+Version:3.2.2
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}
@@ -40,7 +40,7 @@
 Group:  Development/Languages/Ruby
 
 %description
-Test::Unit (test-unit) is unit testing framework for Ruby, based on xUnit
+test-unit (Test::Unit) is unit testing framework for Ruby, based on xUnit
 principles. These were originally designed by Kent Beck, creator of extreme
 programming software development methodology, for Smalltalk's SUnit. It allows
 writing tests, checking results and automated testing in Ruby.

++ test-unit-3.2.1.gem -> test-unit-3.2.2.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2016-07-19 11:33:53.0 +0200
+++ new/README.md   2016-11-02 02:17:05.0 +0100
@@ -10,26 +10,26 @@
 
 An xUnit family unit testing framework for Ruby.
 
-Test::Unit (test-unit) is unit testing framework for Ruby, based on xUnit
+test-unit (Test::Unit) is unit testing framework for Ruby, based on xUnit
 principles. These were originally designed by Kent Beck, creator of extreme
 programming software development methodology, for Smalltalk's SUnit. It allows
 writing tests, checking results and automated testing in Ruby.
 
 ## Features
 
-* Test::Unit 1.2.3 is the original Test::Unit, taken
+* test-unit 1.2.3 is the original test-unit, taken
   straight from the ruby distribution. It is being
   distributed as a gem to allow tool builders to use it as a
   stand-alone package. (The test framework in ruby is going
   to radically change very soon).
 
 * test-unit will be improved actively and may break
-  compatiblity with Test::Unit 1.2.3. (We will not hope it
+  compatiblity with test-unit 1.2.3. (We will not hope it
   if it isn't needed.)
 
 * Some features exist as separated gems like GUI test
   runner. (Tk, GTK+ and Fox) test-unit-full gem package
-  provides for installing all Test::Unit related gems
+  provides for installing all test-unit related gems
   easily.
 
 ## How To
@@ -43,7 +43,7 @@
 % sudo gem install test-unit
 
 
-If you want to use full Test::Unit features:
+If you want to use full test-unit features:
 
 
 % sudo gem install test-unit-full
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.md2016-07-19 11:33:53.0 +0200
+++ new/doc/text/news.md2016-11-02 02:17:05.0 +0100
@@ -1,5 +1,44 @@
 # News
 
+## 3.2.3 - 2016-11-02 {#version-3-2-2}
+
+### Improvements
+
+  * Improved Travis CI configuration.
+[GitHub#123][Patch by Ryunosuke SEATO]
+
+  * Supported Java native exception.
+

commit rubygem-test-unit for openSUSE:Factory

2016-08-26 Thread h_root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2016-08-26 23:16:28

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-06-14 23:08:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2016-08-26 23:16:30.0 +0200
@@ -1,0 +2,24 @@
+Wed Jul 20 04:33:20 UTC 2016 - co...@suse.com
+
+- updated to version 3.2.1
+ see installed news.md
+
+  ## 3.2.1 - 2016-07-19 {#version-3-2-1}
+  
+  ### Improvements
+  
+* Clarified lib/test/unit/diff.rb license. It's a triple license of
+  the Ruby license, PSF license and LGPLv2.1 or later.
+  [Reported by Luisa Pace]
+  
+* Reported norification when data driven test doesn't have
+  parameter.
+  [GitHub#122][Reported by Satoshi "Moris" Tagomori]
+  
+  ### Thanks
+  
+* Luisa Pace
+  
+* Satoshi "Moris" Tagomori
+
+---

Old:

  test-unit-3.2.0.gem

New:

  test-unit-3.2.1.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.UnZI9t/_old  2016-08-26 23:16:31.0 +0200
+++ /var/tmp/diff_new_pack.UnZI9t/_new  2016-08-26 23:16:31.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-test-unit
-Version:3.2.0
+Version:3.2.1
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}

++ test-unit-3.2.0.gem -> test-unit-3.2.1.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/COPYING new/COPYING
--- old/COPYING 2016-06-12 04:33:11.0 +0200
+++ new/COPYING 2016-07-19 11:33:53.0 +0200
@@ -61,4 +61,7 @@
 Exceptions
 --
 
-  * lib/test/unit/diff.rb: PSFL
+  * lib/test/unit/diff.rb: This license, PSF license and/or LGPLv2.1
+or later
+
+  * lib/test-unit.rb: This license and/or LGPLv2.1 or later
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2016-06-12 04:33:11.0 +0200
+++ new/README.md   2016-07-19 11:33:53.0 +0200
@@ -57,8 +57,8 @@
 
 Exception:
 
-  * lib/test/unit/diff.rb is a double license of the Ruby license and
-PSF license.
+  * lib/test/unit/diff.rb is a triple license of the Ruby license,
+PSF license and LGPLv2.1 or later.
 
   * lib/test-unit.rb is a dual license of the Ruby license and LGPLv2.1
 or later.
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.md2016-06-12 04:33:11.0 +0200
+++ new/doc/text/news.md2016-07-19 11:33:53.0 +0200
@@ -1,5 +1,23 @@
 # News
 
+## 3.2.1 - 2016-07-19 {#version-3-2-1}
+
+### Improvements
+
+  * Clarified lib/test/unit/diff.rb license. It's a triple license of
+the Ruby license, PSF license and LGPLv2.1 or later.
+[Reported by Luisa Pace]
+
+  * Reported norification when data driven test doesn't have
+parameter.
+[GitHub#122][Reported by Satoshi "Moris" Tagomori]
+
+### Thanks
+
+  * Luisa Pace
+
+  * Satoshi "Moris" Tagomori
+
 ## 3.2.0 - 2016-06-12 {#version-3-2-0}
 
 ### Improvements
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/test/unit/diff.rb new/lib/test/unit/diff.rb
--- old/lib/test/unit/diff.rb   2016-06-12 04:33:11.0 +0200
+++ new/lib/test/unit/diff.rb   2016-07-19 11:33:53.0 +0200
@@ -3,9 +3,9 @@
 # Copyright (c) 2001-2008 Python Software Foundation; All Rights Reserved
 # Copyright (c) 2008-2011 Kouhei Sutou; All Rights Reserved
 #
-# It is free software, and is distributed under the Ruby
-# license and/or the PSF license. See the COPYING file and
-# PSFL file.
+# It is free software, and is distributed under the Ruby license, the
+# PSF license and/or LGPLv2.1 or later. See the COPYING file, the PSFL
+# file and the LGPL file.
 
 module Test
   module Unit
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/test/unit/testcase.rb 
new/lib/test/unit/testcase.rb
--- old/lib/test/unit/testcase.rb   2016-06-12 04:33:11.0 +0200
+++ new/lib/test/unit/testcase.rb   2016-07-19 11:33:53.0 +0200
@@ -365,6 +365,11 @@
 # @option query [String] :method_name (nil)
 #   the method name for a test.
 def 

commit rubygem-test-unit for openSUSE:Factory

2016-06-14 Thread h_root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2016-06-14 23:08:03

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-05-29 03:13:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2016-06-14 23:08:04.0 +0200
@@ -1,0 +2,17 @@
+Sun Jun 12 04:36:59 UTC 2016 - co...@suse.com
+
+- updated to version 3.2.0
+ see installed news.md
+
+  ## 3.2.0 - 2016-06-12 {#version-3-2-0}
+  
+  ### Improvements
+  
+* Supported rxvt family terminals as color available terminals.
+  [GitHub#121][Reported by Ippei Kishida]
+  
+  ### Thanks
+  
+* Ippei Kishida
+
+---

Old:

  test-unit-3.1.9.gem

New:

  test-unit-3.2.0.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.u7Xijq/_old  2016-06-14 23:08:05.0 +0200
+++ /var/tmp/diff_new_pack.u7Xijq/_new  2016-06-14 23:08:05.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-test-unit
-Version:3.1.9
+Version:3.2.0
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}

++ test-unit-3.1.9.gem -> test-unit-3.2.0.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.md2016-05-20 15:08:01.0 +0200
+++ new/doc/text/news.md2016-06-12 04:33:11.0 +0200
@@ -1,5 +1,16 @@
 # News
 
+## 3.2.0 - 2016-06-12 {#version-3-2-0}
+
+### Improvements
+
+  * Supported rxvt family terminals as color available terminals.
+[GitHub#121][Reported by Ippei Kishida]
+
+### Thanks
+
+  * Ippei Kishida
+
 ## 3.1.9 - 2016-05-20 {#version-3-1-9}
 
 ### Fixes
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/test/unit/ui/console/testrunner.rb 
new/lib/test/unit/ui/console/testrunner.rb
--- old/lib/test/unit/ui/console/testrunner.rb  2016-05-20 15:08:01.0 
+0200
+++ new/lib/test/unit/ui/console/testrunner.rb  2016-06-12 04:33:11.0 
+0200
@@ -491,6 +491,8 @@
 case ENV["TERM"]
 when /(?:term|screen)(?:-(?:256)?color)?\z/
   true
+when /\Arxvt/
+  true
 else
   return true if ENV["EMACS"] == "t"
   false
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.rb2016-05-20 15:08:01.0 +0200
+++ new/lib/test/unit/version.rb2016-06-12 04:33:11.0 +0200
@@ -1,5 +1,5 @@
 module Test
   module Unit
-VERSION = '3.1.9'
+VERSION = '3.2.0'
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-05-20 15:08:01.0 +0200
+++ new/metadata2016-06-12 04:33:11.0 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: test-unit
 version: !ruby/object:Gem::Version
-  version: 3.1.9
+  version: 3.2.0
 platform: ruby
 authors:
 - Kouhei Sutou
@@ -9,7 +9,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-05-20 00:00:00.0 Z
+date: 2016-06-12 00:00:00.0 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-code-snippet.rb
-- test/collector/test_objectspace.rb
-- test/collector/test-descendant.rb
-- test/collector/test-load.rb
-- test/collector/test_dir.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/fixtures/header.csv
-- test/fixtures/header-label.csv
-- test/fixtures/plus.csv
+- 

commit rubygem-test-unit for openSUSE:Factory

2016-05-28 Thread h_root
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.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2016-05-29 03:13:14.0 +0200
@@ -1,0 +2,19 @@
+Sat May 21 04:39:26 UTC 2016 - co...@suse.com
+
+- 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.0 +0200
+++ /var/tmp/diff_new_pack.8aTwUS/_new  2016-05-29 03:13:16.0 +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.md2016-03-19 15:20:52.0 +0100
+++ new/doc/text/news.md2016-05-20 15:08:01.0 +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.0 +0100
+++ new/lib/test/unit/collector/load.rb 2016-05-20 15:08:01.0 +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.0 
+0100
+++ new/lib/test/unit/util/backtracefilter.rb   2016-05-20 15:08:01.0 
+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.rb2016-03-19 15:20:52.0 +0100
+++ new/lib/test/unit/version.rb2016-05-20 15:08:01.0 +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/metadata2016-03-19 15:20:52.0 +0100
+++ new/metadata2016-05-20 15:08:01.0 +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.0 Z
+date: 2016-05-20 00:00:00.0 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
-- 

commit rubygem-test-unit for openSUSE:Factory

2016-04-28 Thread h_root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2016-04-28 16:53:09

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  
2015-10-14 16:44:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2016-04-28 16:56:23.0 +0200
@@ -1,0 +2,75 @@
+Sun Mar 20 05:32:38 UTC 2016 - co...@suse.com
+
+- updated to version 3.1.8
+ see installed news.md
+
+  ## 3.1.8 - 2016-03-19 {#version-3-1-8}
+  
+  ### Improvements
+  
+* Added `--stop-on-failure` command line option. With this option,
+  running test suite is stopped immediately when one test is failed
+  or an error is raised in one test.
+
+---
+Mon Jan 18 06:04:03 UTC 2016 - co...@suse.com
+
+- updated to version 3.1.7
+ see installed news.md
+
+  ## 3.1.7 - 2016-01-17 {#version-3-1-7}
+  
+  ### Fixes
+  
+   * Added a missing require.
+  
+  ## 3.1.6 - 2016-01-17 {#version-3-1-6}
+  
+  It's a Ruby on Rails integration improvement release.
+  
+  ### Improvements
+  
+* Filtered backtrace of power\_assert.
+  [GitHub#114]
+* Improved performance to retrieve test defined location.
+* Improved performance to run fixtures in a test.
+* Supported running a test by `yield` in `setup`:
+  
+  Before:
+  
+  def setup
+@file = File.open("x")
+  end
+  
+  def teardown
+@file.close
+  end
+  
+  After:
+  
+  def setup
+File.open("x") do |file|
+  @file = file
+  yield
+end
+  end
+  
+* Added `--default-test-path` option that specifies the default path
+  that has tests.
+* Made auto runner registration more lazily. Auto runner isn't
+  registered automatically until user defines a test. In the
+  previous releases, auto runner is registered automatically when
+  user defines a test case.
+* Supported specifying a test by location in command line. For
+  example, the following command line runs a test that is defined in
+  /tmp/test_a.rb at line 10:
+  
+  % ruby -r test-unit -e run_test /tmp/test_a.rb:10
+  
+  ### Fixes
+  
+* Fixed a bug that test isn't ran. The test has the same name as
+  data driven test that is defined in parent test case.
+  [GitHub#115]
+
+---

Old:

  test-unit-3.1.5.gem

New:

  test-unit-3.1.8.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.CdN6lm/_old  2016-04-28 16:56:24.0 +0200
+++ /var/tmp/diff_new_pack.CdN6lm/_new  2016-04-28 16:56:24.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-test-unit
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # 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-test-unit
-Version:3.1.5
+Version:3.1.8
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}

++ test-unit-3.1.5.gem -> test-unit-3.1.8.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.md2015-10-09 16:35:53.0 +0200
+++ new/doc/text/news.md2016-03-19 15:20:52.0 +0100
@@ -1,5 +1,68 @@
 # News
 
+## 3.1.8 - 2016-03-19 {#version-3-1-8}
+
+### Improvements
+
+  * Added `--stop-on-failure` command line option. With this option,
+running test suite is stopped immediately when one test is failed
+or an error is raised in one test.
+
+## 3.1.7 - 2016-01-17 {#version-3-1-7}
+
+### Fixes
+
+ * Added a missing require.
+
+## 3.1.6 - 2016-01-17 {#version-3-1-6}
+
+It's a Ruby on Rails integration improvement release.
+
+### Improvements
+
+  * Filtered backtrace of power\_assert.
+[GitHub#114]
+  * Improved performance to retrieve test defined location.
+  * Improved performance to run fixtures in a test.
+  * Supported running a test by `yield` in `setup`:
+
+Before:
+
+def setup
+  @file = File.open("x")
+end
+
+def teardown
+  @file.close
+end
+
+   

commit rubygem-test-unit for openSUSE:Factory

2015-10-14 Thread h_root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2015-10-14 16:44:56

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  
2015-09-30 05:52:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2015-10-14 16:44:57.0 +0200
@@ -1,0 +2,20 @@
+Sat Oct 10 04:30:56 UTC 2015 - co...@suse.com
+
+- updated to version 3.1.5
+ see installed news.md
+
+  ## 3.1.5 - 2015-10-09 {#version-3-1-5}
+  
+  It's a Rack integration improvement release.
+  
+  ### Improvements
+  
+* Renamed experimental top-level `run` method to `run_test` method
+because `run` is conflicted with Rack.
+[GitHub#32][GitHub:basecamp/pow#303] [Reported by Yevhen Viktorov]
+  
+  ### Thanks
+  
+* Yevhen Viktorov
+
+---

Old:

  test-unit-3.1.4.gem

New:

  test-unit-3.1.5.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.ma7P1l/_old  2015-10-14 16:44:58.0 +0200
+++ /var/tmp/diff_new_pack.ma7P1l/_new  2015-10-14 16:44:58.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-test-unit
-Version:3.1.4
+Version:3.1.5
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}

++ test-unit-3.1.4.gem -> test-unit-3.1.5.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.md2015-09-26 04:51:20.0 +0200
+++ new/doc/text/news.md2015-10-09 16:35:53.0 +0200
@@ -1,5 +1,19 @@
 # News
 
+## 3.1.5 - 2015-10-09 {#version-3-1-5}
+
+It's a Rack integration improvement release.
+
+### Improvements
+
+  * Renamed experimental top-level `run` method to `run_test` method
+  because `run` is conflicted with Rack.
+  [GitHub#32][GitHub:basecamp/pow#303] [Reported by Yevhen Viktorov]
+
+### Thanks
+
+  * Yevhen Viktorov
+
 ## 3.1.4 - 2015-09-26 {#version-3-1-4}
 
 It's a minor improvement release.
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.rb2015-09-26 04:51:20.0 +0200
+++ new/lib/test/unit/version.rb2015-10-09 16:35:53.0 +0200
@@ -1,5 +1,5 @@
 module Test
   module Unit
-VERSION = '3.1.4'
+VERSION = '3.1.5'
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/test-unit.rb new/lib/test-unit.rb
--- old/lib/test-unit.rb2015-09-26 04:51:20.0 +0200
+++ new/lib/test-unit.rb2015-10-09 16:35:53.0 +0200
@@ -1,4 +1,4 @@
-# Copyright (C) 2012  Kouhei Sutou 
+# Copyright (C) 2012-2015  Kouhei Sutou 
 #
 # License: Ruby's or LGPLv2.1 or later
 #
@@ -24,9 +24,11 @@
   end
 end
 
-# experimental. It is for "ruby -rtest-unit -e run test/test_*.rb".
-# Is this API OK or dirty?
-def run
-  self.class.send(:undef_method, :run)
-  require "test/unit"
+unless respond_to?(:run_test, true)
+  # experimental. It is for "ruby -rtest-unit -e run_test test/test_*.rb".
+  # Is this API OK or dirty?
+  def run_test
+self.class.send(:undef_method, :run_test)
+require "test/unit"
+  end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2015-09-26 04:51:20.0 +0200
+++ new/metadata2015-10-09 16:35:53.0 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: test-unit
 version: !ruby/object:Gem::Version
-  version: 3.1.4
+  version: 3.1.5
 platform: ruby
 authors:
 - Kouhei Sutou
@@ -9,7 +9,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2015-09-26 00:00:00.0 Z
+date: 2015-10-09 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: power_assert




commit rubygem-test-unit for openSUSE:Factory

2015-09-29 Thread h_root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2015-09-30 05:52:22

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  
2015-08-02 22:46:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2015-09-30 05:52:26.0 +0200
@@ -1,0 +2,26 @@
+Sat Sep 26 04:30:35 UTC 2015 - co...@suse.com
+
+- updated to version 3.1.4
+ see installed news.md
+
+  ## 3.1.4 - 2015-09-26 {#version-3-1-4}
+  
+  It's a minor improvement release.
+  
+  ### Improvements
+  
+* Updated sample code. [GitHub#109][Patch by takiy33]
+* Updated .travis.yml. [GitHub#110][Patch by takiy33]
+* document: Added table header in how to document.
+  [GitHub#111][Patch by takiy33]
+* Removed duplicated code.
+  [GitHub#112][Patch by takiy33]
+* Removed needless encoding conversion in fetching code snippet.
+  [GitHub#113][Patch by NARUSE, Yui]
+  
+  ### Thanks
+  
+* takiy33
+* NARUSE, Yui
+
+---

Old:

  test-unit-3.1.3.gem

New:

  test-unit-3.1.4.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.bAtvUF/_old  2015-09-30 05:52:26.0 +0200
+++ /var/tmp/diff_new_pack.bAtvUF/_new  2015-09-30 05:52:26.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-test-unit
-Version:3.1.3
+Version:3.1.4
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}

++ test-unit-3.1.3.gem -> test-unit-3.1.4.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/how-to.md new/doc/text/how-to.md
--- old/doc/text/how-to.md  2015-07-26 11:05:42.0 +0200
+++ new/doc/text/how-to.md  2015-09-26 04:51:20.0 +0200
@@ -67,6 +67,8 @@
 ...
   ...
 
+| Definition  | Description  |
+|-|--|
 | SCHEME_NAME | the name of the color scheme |
 | EVENT_NAME  | success, failure, pending, omission, notification, error |
 | COLOR_NAME  | black, red, green, yellow, blue, magenta, cyan, white|
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/doc/text/news.md new/doc/text/news.md
--- old/doc/text/news.md2015-07-26 11:05:42.0 +0200
+++ new/doc/text/news.md2015-09-26 04:51:20.0 +0200
@@ -1,5 +1,25 @@
 # News
 
+## 3.1.4 - 2015-09-26 {#version-3-1-4}
+
+It's a minor improvement release.
+
+### Improvements
+
+  * Updated sample code. [GitHub#109][Patch by takiy33]
+  * Updated .travis.yml. [GitHub#110][Patch by takiy33]
+  * document: Added table header in how to document.
+[GitHub#111][Patch by takiy33]
+  * Removed duplicated code.
+[GitHub#112][Patch by takiy33]
+  * Removed needless encoding conversion in fetching code snippet.
+[GitHub#113][Patch by NARUSE, Yui]
+
+### Thanks
+
+  * takiy33
+  * NARUSE, Yui
+
 ## 3.1.3 - 2015-07-26 {#version-3-1-3}
 
 It's a bug fix release.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/test/unit/code-snippet-fetcher.rb 
new/lib/test/unit/code-snippet-fetcher.rb
--- old/lib/test/unit/code-snippet-fetcher.rb   2015-07-26 11:05:42.0 
+0200
+++ new/lib/test/unit/code-snippet-fetcher.rb   2015-09-26 04:51:20.0 
+0200
@@ -32,7 +32,7 @@
   encoding = detect_encoding(first_line)
   if encoding
 first_line.force_encoding(encoding)
-file.set_encoding(encoding)
+file.set_encoding(encoding, encoding)
   end
   lines << first_line
   lines.concat(file.readlines)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/test/unit/collector/xml.rb 
new/lib/test/unit/collector/xml.rb
--- old/lib/test/unit/collector/xml.rb  2015-07-26 11:05:42.0 +0200
+++ new/lib/test/unit/collector/xml.rb  2015-09-26 04:51:20.0 +0200
@@ -64,16 +64,15 @@
 
 state = next_state(@state_stack.last, uri, local)
 @state_stack.push(state)
+@values = {}
 case state
 when :test_suite, :test_case
-  @values = {}
+  # do nothing
 when :test
-  @values = {}
   @n_pass_assertions = 0 if _parent_tag == "start-test"
   

commit rubygem-test-unit for openSUSE:Factory

2015-08-02 Thread h_root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2015-08-02 22:46:14

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  
2015-06-16 14:06:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2015-08-02 22:46:15.0 +0200
@@ -1,0 +2,32 @@
+Mon Jul 27 04:30:24 UTC 2015 - co...@suse.com
+
+- updated to version 3.1.3
+ see installed news.md
+
+  ## 3.1.3 - 2015-07-26 {#version-3-1-3}
+  
+  It's a bug fix release.
+  
+  ### Improvements
+  
+* Removed unused `TODO` file. [GitHub#108][Patch by takiy33]
+  
+  ### Fixes
+  
+* `--location`: Fixed a bug that `--location LINE` doesn't work when
+  test script is specified as relative path. [Reported by TOMITA Masahiro]
+  
+  The following doesn't work:
+  
+  % ruby ./test.rb --location 10
+  
+  The following works:
+  
+  % ruby test.rb --location 10
+  
+  ### Thanks
+  
+* takiy33
+* TOMITA Masahiro
+
+---

Old:

  test-unit-3.1.2.gem

New:

  test-unit-3.1.3.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.chWI8o/_old  2015-08-02 22:46:16.0 +0200
+++ /var/tmp/diff_new_pack.chWI8o/_new  2015-08-02 22:46:16.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-test-unit
-Version:3.1.2
+Version:3.1.3
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}

++ test-unit-3.1.2.gem - test-unit-3.1.3.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/TODO new/TODO
--- old/TODO2015-06-09 15:27:09.0 +0200
+++ new/TODO1970-01-01 01:00:00.0 +0100
@@ -1 +0,0 @@
-Do you have it?
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.md2015-06-09 15:27:09.0 +0200
+++ new/doc/text/news.md2015-07-26 11:05:42.0 +0200
@@ -1,5 +1,31 @@
 # News
 
+## 3.1.3 - 2015-07-26 {#version-3-1-3}
+
+It's a bug fix release.
+
+### Improvements
+
+  * Removed unused `TODO` file. [GitHub#108][Patch by takiy33]
+
+### Fixes
+
+  * `--location`: Fixed a bug that `--location LINE` doesn't work when
+test script is specified as relative path. [Reported by TOMITA Masahiro]
+
+The following doesn't work:
+
+% ruby ./test.rb --location 10
+
+The following works:
+
+% ruby test.rb --location 10
+
+### Thanks
+
+  * takiy33
+  * TOMITA Masahiro
+
 ## 3.1.2 - 2015-06-09 {#version-3-1-2}
 
 It's command line option improvements fix release.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/test/unit/testcase.rb 
new/lib/test/unit/testcase.rb
--- old/lib/test/unit/testcase.rb   2015-06-09 15:27:09.0 +0200
+++ new/lib/test/unit/testcase.rb   2015-07-26 11:05:42.0 +0200
@@ -121,12 +121,12 @@
   if source_location
 path, line = source_location
   else
-path, line, = caller[0].split(/:(\d+)/,2)
+path, line, = caller[0].split(/:(\d+)/, 2)
 line = line.to_i if line
   end
   method_locations  {
 :method_name = stringified_name,
-:path = path,
+:path = File.expand_path(path),
 :line = line,
   }
   added_method_names[stringified_name] = true
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.rb2015-06-09 15:27:09.0 +0200
+++ new/lib/test/unit/version.rb2015-07-26 11:05:42.0 +0200
@@ -1,5 +1,5 @@
 module Test
   module Unit
-VERSION = '3.1.2'
+VERSION = '3.1.3'
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2015-06-09 15:27:09.0 +0200
+++ new/metadata2015-07-26 11:05:42.0 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: test-unit
 version: !ruby/object:Gem::Version
-  version: 3.1.2
+  version: 3.1.3
 platform: ruby
 authors:
 - Kouhei Sutou
@@ -9,7 +9,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2015-06-09 

commit rubygem-test-unit for openSUSE:Factory

2015-06-16 Thread h_root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2015-06-16 14:05:57

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  
2015-06-12 20:30:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2015-06-16 14:06:14.0 +0200
@@ -1,0 +2,47 @@
+Fri Jun 12 04:36:59 UTC 2015 - co...@suse.com
+
+- updated to version 3.1.2
+ see installed news.md
+
+  ## 3.1.2 - 2015-06-09 {#version-3-1-2}
+  
+  It's command line option improvements fix release.
+  
+  ### Improvements
+  
+* `--location`: Made path match rule more strict.
+  [Suggested by kimura wataru]
+  * Before:
+* If test defined path ends with the specified path, the test is
+  matched.
+  * After:
+* If base name of test defined path equals to the specified
+  path, the test is matched.
+* If relative path of test defined path equals to the specified
+  path, the test is matched.
+* If the specified path is absolute path and test defined path
+  equals to the specified path, the test is matched.
+* `--pattern`: If the option is specified, the default patterns
+  aren't used. In the earlier versions, both the default patterns
+  and the specified patterns are used.
+  [Suggested by kimura wataru]
+  
+  ### Thanks
+  
+* kimura wataru
+  
+  ## 3.1.1 - 2015-05-29 {#version-3-1-1}
+  
+  It's a bug fix release.
+  
+  ### Fixes
+  
+* Fixed a bug that `--location` detects tests not only in sub test
+  case but also parent test case.
+  [GitHub#105][Reported by wanabe]
+  
+  ### Thanks
+  
+* wanabe
+
+---

Old:

  test-unit-3.1.0.gem

New:

  test-unit-3.1.2.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.1i5NOQ/_old  2015-06-16 14:06:15.0 +0200
+++ /var/tmp/diff_new_pack.1i5NOQ/_new  2015-06-16 14:06:15.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-test-unit
-Version:3.1.0
+Version:3.1.2
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}

++ test-unit-3.1.0.gem - test-unit-3.1.2.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.md2015-05-28 05:03:43.0 +0200
+++ new/doc/text/news.md2015-06-09 15:27:09.0 +0200
@@ -1,5 +1,46 @@
 # News
 
+## 3.1.2 - 2015-06-09 {#version-3-1-2}
+
+It's command line option improvements fix release.
+
+### Improvements
+
+  * `--location`: Made path match rule more strict.
+[Suggested by kimura wataru]
+* Before:
+  * If test defined path ends with the specified path, the test is
+matched.
+* After:
+  * If base name of test defined path equals to the specified
+path, the test is matched.
+  * If relative path of test defined path equals to the specified
+path, the test is matched.
+  * If the specified path is absolute path and test defined path
+equals to the specified path, the test is matched.
+  * `--pattern`: If the option is specified, the default patterns
+aren't used. In the earlier versions, both the default patterns
+and the specified patterns are used.
+[Suggested by kimura wataru]
+
+### Thanks
+
+  * kimura wataru
+
+## 3.1.1 - 2015-05-29 {#version-3-1-1}
+
+It's a bug fix release.
+
+### Fixes
+
+  * Fixed a bug that `--location` detects tests not only in sub test
+case but also parent test case.
+[GitHub#105][Reported by wanabe]
+
+### Thanks
+
+  * wanabe
+
 ## 3.1.0 - 2015-05-28 {#version-3-1-0}
 
 It's a bug fix release.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/test/unit/autorunner.rb 
new/lib/test/unit/autorunner.rb
--- old/lib/test/unit/autorunner.rb 2015-05-28 05:03:43.0 +0200
+++ new/lib/test/unit/autorunner.rb 2015-06-09 15:27:09.0 +0200
@@ -87,8 +87,12 @@
   register_collector(:load) do |auto_runner|
 require 'test/unit/collector/load'
 collector = Collector::Load.new
-collector.patterns.concat(auto_runner.pattern) if auto_runner.pattern
-collector.excludes.concat(auto_runner.exclude) if auto_runner.exclude
+unless 

commit rubygem-test-unit for openSUSE:Factory

2015-06-12 Thread h_root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2015-06-12 20:30:32

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  
2015-02-16 21:13:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2015-06-12 20:30:35.0 +0200
@@ -1,0 +2,39 @@
+Thu May 28 04:34:33 UTC 2015 - co...@suse.com
+
+- updated to version 3.1.0
+ see installed news.md
+
+  ## 3.1.0 - 2015-05-28 {#version-3-1-0}
+  
+  It's a bug fix release.
+  
+  ### Improvements
+  
+* [ui][console] Removed needless new line.
+  
+  ### Fixes
+  
+* Fixed a bug that priority mode can't be used on Windows.
+  [GitHub#95][Reported by Daniel Berger]
+* Fixed a homepage URL RubyGems spec.
+  [GitHub#96][Patch by Masayoshi Takahashi]
+  supported.) [GitHub#89][Patch by Aaron Stone]
+* Fixed a bug that shutdown hook isn't called when pass throw
+  exception such as `Interrupt` is raised.
+  [GitHub#98][Reported by jeremiahishere.]
+* Fixed typos in documents.
+  [GitHub#100][Reported by scivola]
+  [GitHub#102][GitHub#103][Patch by Masafumi Yokoyama]
+* Fixed a bug that the same name test isn't executed in sub test case.
+  [GitHub#104][Reported by wanabe]
+  
+  ### Thanks
+  
+* Daniel Berger
+* Masayoshi Takahashi
+* jeremiahishere
+* scivola
+* Masafumi Yokoyama
+* wanabe
+
+---

Old:

  test-unit-3.0.9.gem

New:

  test-unit-3.1.0.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.wHwHl1/_old  2015-06-12 20:30:36.0 +0200
+++ /var/tmp/diff_new_pack.wHwHl1/_new  2015-06-12 20:30:36.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-test-unit
-Version:3.0.9
+Version:3.1.0
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}
@@ -32,7 +32,7 @@
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  %{ruby}
 BuildRequires:  ruby-macros = 5
-Url:http://rubygems.org/gems/test-unit
+Url:http://test-unit.github.io/
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml
 Summary:An xUnit family unit testing framework for Ruby

++ test-unit-3.0.9.gem - test-unit-3.1.0.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.md2014-12-31 04:12:08.0 +0100
+++ new/doc/text/news.md2015-05-28 05:03:43.0 +0200
@@ -1,5 +1,38 @@
 # News
 
+## 3.1.0 - 2015-05-28 {#version-3-1-0}
+
+It's a bug fix release.
+
+### Improvements
+
+  * [ui][console] Removed needless new line.
+
+### Fixes
+
+  * Fixed a bug that priority mode can't be used on Windows.
+[GitHub#95][Reported by Daniel Berger]
+  * Fixed a homepage URL RubyGems spec.
+[GitHub#96][Patch by Masayoshi Takahashi]
+supported.) [GitHub#89][Patch by Aaron Stone]
+  * Fixed a bug that shutdown hook isn't called when pass throw
+exception such as `Interrupt` is raised.
+[GitHub#98][Reported by jeremiahishere.]
+  * Fixed typos in documents.
+[GitHub#100][Reported by scivola]
+[GitHub#102][GitHub#103][Patch by Masafumi Yokoyama]
+  * Fixed a bug that the same name test isn't executed in sub test case.
+[GitHub#104][Reported by wanabe]
+
+### Thanks
+
+  * Daniel Berger
+  * Masayoshi Takahashi
+  * jeremiahishere
+  * scivola
+  * Masafumi Yokoyama
+  * wanabe
+
 ## 3.0.9 - 2014-12-31 {#version-3-0-9}
 
 It's a release that improves colors.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/test/unit/assertions.rb 
new/lib/test/unit/assertions.rb
--- old/lib/test/unit/assertions.rb 2014-12-31 04:12:08.0 +0100
+++ new/lib/test/unit/assertions.rb 2015-05-28 05:03:43.0 +0200
@@ -178,7 +178,7 @@
   #   refute(false)# = pass
   #   refute(nil)  # = pass
   #
-  # @example Fialure patterns
+  # @example Failure patterns
   #   refute(true) # = failure
   #   refute(string) # = failure
   #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/test/unit/error.rb new/lib/test/unit/error.rb
--- old/lib/test/unit/error.rb  2014-12-31 04:12:08.0 +0100
+++ 

commit rubygem-test-unit for openSUSE:Factory

2015-02-16 Thread h_root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2015-02-16 21:13:23

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  
2013-05-27 10:01:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2015-02-16 21:13:24.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb 10 18:37:51 UTC 2015 - co...@suse.com
+
+- updated to version 3.0.9
+
+---

Old:

  test-unit-2.5.5.gem

New:

  gem2rpm.yml
  test-unit-3.0.9.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.4VyTPI/_old  2015-02-16 21:13:25.0 +0100
+++ /var/tmp/diff_new_pack.4VyTPI/_new  2015-02-16 21:13:25.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-test-unit
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,68 +16,44 @@
 #
 
 
+#
+# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
+# All sections marked as MANUAL, license headers, summaries and descriptions
+# can be maintained in that file. Please consult this file before editing any
+# of those fields
+#
+
 Name:   rubygem-test-unit
-Version:2.5.5
+Version:3.0.9
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}
-
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
-Url:http://test-unit.rubyforge.org/
+BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  %{ruby}
+BuildRequires:  ruby-macros = 5
+Url:http://rubygems.org/gems/test-unit
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
-Summary:test-unit - Improved version of Test::Unit bundled in Ruby 
1.8.x
+Source1:gem2rpm.yml
+Summary:An xUnit family unit testing framework for Ruby
 License:Ruby and Python-2.0
 Group:  Development/Languages/Ruby
 
 %description
-Ruby 1.9.x bundles minitest not Test::Unit. Test::Unit
-bundled in Ruby 1.8.x had not been improved but unbundled
-Test::Unit (test-unit) is improved actively.
-
-%package doc
-Summary:RDoc documentation for %{mod_name}
-Group:  Development/Languages/Ruby
-Requires:   %{name} = %{version}
-
-%description doc
-Documentation generated at gem installation time.
-Usually in RDoc and RI formats.
-
-%package testsuite
-Summary:Test suite for %{mod_name}
-Group:  Development/Languages/Ruby
-Requires:   %{name} = %{version}
-
-%description testsuite
-Test::Unit or RSpec files, useful for developers.
+Test::Unit (test-unit) is unit testing framework for Ruby, based on xUnit
+principles. These were originally designed by Kent Beck, creator of extreme
+programming software development methodology, for Smalltalk's SUnit. It allows
+writing tests, checking results and automated testing in Ruby.
 
 %prep
-#gem_unpack
-#if you need patches, apply them here and replace the # with a % sign in the 
surrounding lines
-#gem_build
 
 %build
 
 %install
-%gem_install -f
-mkdir -p %{buildroot}%{_docdir}/%{name}
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/COPYING 
%buildroot/%{_docdir}/%{name}/COPYING
-
-%files
-%defattr(-,root,root,-)
-%{_docdir}/%{name}
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
-
-%files doc
-%defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
-
-%files testsuite
-%defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
+%gem_install \
+  --doc-files=COPYING README.md \
+  -f
+
+%gem_packages
 
 %changelog

++ gem2rpm.yml ++
# ---
# ## used by gem2rpm
# :summary: this is a custom summary
# ## used by gem2rpm
# :description: |-
#   this is a custom description
#
#   it can be multiline
# ## used by gem2rpm
:license: Ruby and Python-2.0
# ## used by gem2rpm and gem_packages
# :version_suffix: -x_y
# ## used by gem2rpm and gem_packages
# :disable_docs: true
# ## used by gem2rpm
# :disable_automatic_rdoc_dep: true
# ## used by gem2rpm
# :preamble: |-
#   BuildRequires: foobar

commit rubygem-test-unit for openSUSE:Factory

2013-05-27 Thread h_root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2013-05-27 10:01:29

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  
2013-03-08 11:20:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2013-05-27 10:01:30.0 +0200
@@ -1,0 +2,5 @@
+Sat May 18 07:30:56 UTC 2013 - co...@suse.com
+
+- updated to version 2.5.5, no changelog
+
+---

Old:

  test-unit-2.5.4.gem

New:

  test-unit-2.5.5.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.pSY8pE/_old  2013-05-27 10:01:31.0 +0200
+++ /var/tmp/diff_new_pack.pSY8pE/_new  2013-05-27 10:01:31.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   rubygem-test-unit
-Version:2.5.4
+Version:2.5.5
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}
@@ -25,7 +25,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  ruby-macros = 1
 Url:http://test-unit.rubyforge.org/
-Source: %{mod_full_name}.gem
+Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:test-unit - Improved version of Test::Unit bundled in Ruby 
1.8.x
 License:Ruby and Python-2.0
 Group:  Development/Languages/Ruby
@@ -61,9 +61,12 @@
 
 %install
 %gem_install -f
+mkdir -p %{buildroot}%{_docdir}/%{name}
+ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/COPYING 
%buildroot/%{_docdir}/%{name}/COPYING
 
 %files
 %defattr(-,root,root,-)
+%{_docdir}/%{name}
 %{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
 %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
 %exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit rubygem-test-unit for openSUSE:Factory

2013-03-08 Thread h_root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2013-03-08 10:59:12

Comparing /work/SRC/openSUSE:Factory/rubygem-test-unit (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-test-unit.new (New)


Package is rubygem-test-unit, Maintainer is ruby-de...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-test-unit/rubygem-test-unit.changes  
2012-12-07 14:50:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2013-03-08 10:59:13.0 +0100
@@ -1,0 +2,5 @@
+Wed Jan 23 06:51:34 UTC 2013 - co...@suse.com
+
+- updated to version 2.5.4, no changelog
+
+---

Old:

  test-unit-2.5.3.gem

New:

  test-unit-2.5.4.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.KOCpB9/_old  2013-03-08 10:59:14.0 +0100
+++ /var/tmp/diff_new_pack.KOCpB9/_new  2013-03-08 10:59:14.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-test-unit
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   rubygem-test-unit
-Version:2.5.3
+Version:2.5.4
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit rubygem-test-unit for openSUSE:Factory

2012-12-07 Thread h_root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2012-12-07 14:50:33

Comparing /work/SRC/openSUSE:Factory/rubygem-test-unit (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-test-unit.new (New)


Package is rubygem-test-unit, Maintainer is r...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-test-unit/rubygem-test-unit.changes  
2012-09-01 10:35:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2012-12-07 14:50:35.0 +0100
@@ -1,0 +2,6 @@
+Thu Nov 29 11:01:16 UTC 2012 - co...@suse.com
+
+- updated to version 2.5.3
+ * improved mini-test compat
+
+---

Old:

  test-unit-2.5.2.gem

New:

  test-unit-2.5.3.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.lWspNF/_old  2012-12-07 14:50:36.0 +0100
+++ /var/tmp/diff_new_pack.lWspNF/_new  2012-12-07 14:50:36.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   rubygem-test-unit
-Version:2.5.2
+Version:2.5.3
 Release:0
 %define mod_name test-unit
 %define mod_full_name %{mod_name}-%{version}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit rubygem-test-unit for openSUSE:Factory

2012-09-01 Thread h_root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2012-09-01 10:35:11

Comparing /work/SRC/openSUSE:Factory/rubygem-test-unit (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-test-unit.new (New)


Package is rubygem-test-unit, Maintainer is r...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-test-unit/rubygem-test-unit.changes  
2012-07-16 10:11:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2012-09-01 10:35:12.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug 29 08:11:23 UTC 2012 - co...@suse.com
+
+- updated to version 2.5.2, no changelog
+
+---

Old:

  test-unit-2.5.1.gem

New:

  test-unit-2.5.2.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.T9tZLy/_old  2012-09-01 10:35:13.0 +0200
+++ /var/tmp/diff_new_pack.T9tZLy/_new  2012-09-01 10:35:13.0 +0200
@@ -17,39 +17,64 @@
 
 
 Name:   rubygem-test-unit
-Version:2.5.1
+Version:2.5.2
 Release:0
 %define mod_name test-unit
-#
+%define mod_full_name %{mod_name}-%{version}
+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  rubygems_with_buildroot_patch
-%rubygems_requires
-#
-Url:http://rubyforge.org/projects/test-unit/
-Source: %{mod_name}-%{version}.gem
-#
-Summary:Test::Unit 2.x - Improved version of Test::Unit bundled in 
Ruby 1.8.x
-License:Ruby
+BuildRequires:  ruby-macros = 1
+Url:http://test-unit.rubyforge.org/
+Source: %{mod_full_name}.gem
+Summary:test-unit - Improved version of Test::Unit bundled in Ruby 
1.8.x
+License:Ruby and Python-2.0
 Group:  Development/Languages/Ruby
 
 %description
-Test::Unit 2.x - Improved version of Test::Unit bundled in
-Ruby 1.8.x.
-
 Ruby 1.9.x bundles minitest not Test::Unit. Test::Unit
 bundled in Ruby 1.8.x had not been improved but unbundled
-Test::Unit (Test::Unit 2.x) will be improved actively.
+Test::Unit (test-unit) is improved actively.
+
+%package doc
+Summary:RDoc documentation for %{mod_name}
+Group:  Development/Languages/Ruby
+Requires:   %{name} = %{version}
+
+%description doc
+Documentation generated at gem installation time.
+Usually in RDoc and RI formats.
+
+%package testsuite
+Summary:Test suite for %{mod_name}
+Group:  Development/Languages/Ruby
+Requires:   %{name} = %{version}
+
+%description testsuite
+Test::Unit or RSpec files, useful for developers.
 
 %prep
+#gem_unpack
+#if you need patches, apply them here and replace the # with a % sign in the 
surrounding lines
+#gem_build
+
 %build
+
 %install
-%gem_install %{S:0}
+%gem_install -f
 
 %files
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_name}-%{version}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_name}-%{version}.gemspec
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_name}-%{version}/
+%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
+%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
+%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
+%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+
+%files doc
+%defattr(-,root,root,-)
+%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+
+%files testsuite
+%defattr(-,root,root,-)
+%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
 
 %changelog

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit rubygem-test-unit for openSUSE:Factory

2012-07-16 Thread h_root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2012-07-16 10:11:41

Comparing /work/SRC/openSUSE:Factory/rubygem-test-unit (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-test-unit.new (New)


Package is rubygem-test-unit, Maintainer is r...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-test-unit/rubygem-test-unit.changes  
2012-06-26 20:03:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2012-07-16 10:11:42.0 +0200
@@ -1,0 +2,5 @@
+Sun Jul 15 06:46:00 UTC 2012 - co...@suse.com
+
+- update to 2.5.1, no changelog
+
+---

Old:

  test-unit-2.5.0.gem

New:

  test-unit-2.5.1.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.DPS0xv/_old  2012-07-16 10:11:44.0 +0200
+++ /var/tmp/diff_new_pack.DPS0xv/_new  2012-07-16 10:11:44.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   rubygem-test-unit
-Version:2.5.0
+Version:2.5.1
 Release:0
 %define mod_name test-unit
 #

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit rubygem-test-unit for openSUSE:Factory

2012-06-26 Thread h_root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2012-06-26 20:03:44

Comparing /work/SRC/openSUSE:Factory/rubygem-test-unit (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-test-unit.new (New)


Package is rubygem-test-unit, Maintainer is r...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-test-unit/rubygem-test-unit.changes  
2012-04-12 09:51:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2012-06-26 20:03:47.0 +0200
@@ -1,0 +2,10 @@
+Fri Jun 22 05:10:52 UTC 2012 - co...@suse.com
+
+- update to 2.5.0, no changelog
+
+---
+Fri Apr 27 06:10:22 UTC 2012 - co...@suse.com
+
+- trying to fix an issue with ci_reporter (see github)
+
+---

Old:

  test-unit-2.4.8.gem

New:

  test-unit-2.5.0.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.YQY2fk/_old  2012-06-26 20:03:48.0 +0200
+++ /var/tmp/diff_new_pack.YQY2fk/_new  2012-06-26 20:03:48.0 +0200
@@ -17,11 +17,10 @@
 
 
 Name:   rubygem-test-unit
-Version:2.4.8
+Version:2.5.0
 Release:0
 %define mod_name test-unit
 #
-#
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  rubygems_with_buildroot_patch
 %rubygems_requires

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit rubygem-test-unit for openSUSE:Factory

2012-04-12 Thread h_root
Hello community,

here is the log from the commit of package rubygem-test-unit for 
openSUSE:Factory checked in at 2012-04-12 09:50:25

Comparing /work/SRC/openSUSE:Factory/rubygem-test-unit (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-test-unit.new (New)


Package is rubygem-test-unit, Maintainer is r...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-test-unit/rubygem-test-unit.changes  
2011-09-23 12:45:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-test-unit.new/rubygem-test-unit.changes 
2012-04-12 09:50:29.0 +0200
@@ -1,0 +2,5 @@
+Wed Apr  4 11:49:04 UTC 2012 - co...@suse.com
+
+- update to 2.4.8 - History.txt removed ;(
+
+---

Old:

  test-unit-2.0.9.gem

New:

  test-unit-2.4.8.gem



Other differences:
--
++ rubygem-test-unit.spec ++
--- /var/tmp/diff_new_pack.frmddR/_old  2012-04-12 09:50:32.0 +0200
+++ /var/tmp/diff_new_pack.frmddR/_new  2012-04-12 09:50:32.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-test-unit
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,16 +15,12 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   rubygem-test-unit
-Version:2.0.9
-Release:1
+Version:2.4.8
+Release:0
 %define mod_name test-unit
 #
-Group:  Development/Languages/Ruby
-License:The Ruby License
 #
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  rubygems_with_buildroot_patch
@@ -34,6 +30,8 @@
 Source: %{mod_name}-%{version}.gem
 #
 Summary:Test::Unit 2.x - Improved version of Test::Unit bundled in 
Ruby 1.8.x
+License:Ruby
+Group:  Development/Languages/Ruby
 
 %description
 Test::Unit 2.x - Improved version of Test::Unit bundled in
@@ -44,22 +42,12 @@
 Test::Unit (Test::Unit 2.x) will be improved actively.
 
 %prep
-
 %build
-
 %install
 %gem_install %{S:0}
 
-# Note: Remove the file because it conflicts with the standard Ruby Test:Unit
-# (And actually it's the same file.)
-%{__mv} -v %{buildroot}/%{_bindir}/testrb{,-test-unit}
-
-%clean
-%{__rm} -rf %{buildroot}
-
 %files
 %defattr(-,root,root,-)
-%{_bindir}/testrb-test-unit
 %{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_name}-%{version}.gem
 %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/
 %{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_name}-%{version}.gemspec

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org