1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

merge revision(s) 67561:

Import CSV 3.0.9

	This fixes test failures on Windows.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_6@67567 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2019-04-15 14:42:35 +00:00
parent fb09ade607
commit 872a09255d
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ class TestCSVInterfaceRead < Test::Unit::TestCase
@data = "" @data = ""
@data << "1\t2\t3\r\n" @data << "1\t2\t3\r\n"
@data << "4\t5\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 << @data
@input.rewind @input.rewind
@rows = [ @rows = [

View file

@ -1,6 +1,6 @@
#define RUBY_VERSION "2.6.3" #define RUBY_VERSION "2.6.3"
#define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR #define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
#define RUBY_PATCHLEVEL 61 #define RUBY_PATCHLEVEL 62
#define RUBY_RELEASE_YEAR 2019 #define RUBY_RELEASE_YEAR 2019
#define RUBY_RELEASE_MONTH 4 #define RUBY_RELEASE_MONTH 4