[前][次][番号順一覧][スレッド一覧]

ruby-changes:55353

From: kou <ko1@a...>
Date: Mon, 15 Apr 2019 11:05:10 +0900 (JST)
Subject: [ruby-changes:55353] kou:r67561 (trunk): Import CSV 3.0.9

kou	2019-04-15 11:05:03 +0900 (Mon, 15 Apr 2019)

  New Revision: 67561

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=67561

  Log:
    Import CSV 3.0.9
    
    This fixes test failures on Windows.

  Modified files:
    trunk/NEWS
    trunk/test/csv/interface/test_read.rb
Index: NEWS
===================================================================
--- NEWS	(revision 67560)
+++ NEWS	(revision 67561)
@@ -62,7 +62,7 @@ Regexp/String:: https://github.com/ruby/ruby/blob/trunk/NEWS#L62
 
 CSV::
 
-  * Upgrade to 3.0.8.
+  * Upgrade to 3.0.9.
     See https://github.com/ruby/csv/blob/master/NEWS.md.
 
 Date::
Index: test/csv/interface/test_read.rb
===================================================================
--- test/csv/interface/test_read.rb	(revision 67560)
+++ test/csv/interface/test_read.rb	(revision 67561)
@@ -10,7 +10,7 @@ class TestCSVInterfaceRead < Test::Unit: https://github.com/ruby/ruby/blob/trunk/test/csv/interface/test_read.rb#L10
     @data = ""
     @data << "1\t2\t3\r\n"
     @data << "4\t5\r\n"
-    @input = Tempfile.new(["interface-read", ".csv"], options: {binmode: true})
+    @input = Tempfile.new(["interface-read", ".csv"], binmode: true)
     @input << @data
     @input.rewind
     @rows = [

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]