Skip to content

Commit

Permalink
Update to stringio 3.0.8
Browse files Browse the repository at this point in the history
* Adds StringIO::VERSION to the JRuby library (ruby/stringio#57)
* Tags two specs for getline para behavior new after 3.0.6 (ruby/stringio#61)
  • Loading branch information
headius committed Aug 10, 2023
1 parent a964ab0 commit 86e3b82
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/pom.rb
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def log(message=nil)
# ['set', '1.0.2'],
['shellwords', '0.1.0'],
['singleton', '0.1.1'],
['stringio', '3.0.5'],
['stringio', '3.0.8'],
['strscan', '3.0.6'],
['subspawn', '0.1.1'], # has 3 transitive deps:
['subspawn-posix', '0.1.1'],
Expand Down
8 changes: 4 additions & 4 deletions lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ DO NOT MODIFY - GENERATED CODE
<dependency>
<groupId>rubygems</groupId>
<artifactId>stringio</artifactId>
<version>3.0.5</version>
<version>3.0.8</version>
<type>gem</type>
<scope>provided</scope>
<exclusions>
Expand Down Expand Up @@ -1105,7 +1105,7 @@ DO NOT MODIFY - GENERATED CODE
<include>specifications/securerandom-0.2.0*</include>
<include>specifications/shellwords-0.1.0*</include>
<include>specifications/singleton-0.1.1*</include>
<include>specifications/stringio-3.0.5*</include>
<include>specifications/stringio-3.0.8*</include>
<include>specifications/strscan-3.0.6*</include>
<include>specifications/subspawn-0.1.1*</include>
<include>specifications/subspawn-posix-0.1.1*</include>
Expand Down Expand Up @@ -1182,7 +1182,7 @@ DO NOT MODIFY - GENERATED CODE
<include>gems/securerandom-0.2.0*/**/*</include>
<include>gems/shellwords-0.1.0*/**/*</include>
<include>gems/singleton-0.1.1*/**/*</include>
<include>gems/stringio-3.0.5*/**/*</include>
<include>gems/stringio-3.0.8*/**/*</include>
<include>gems/strscan-3.0.6*/**/*</include>
<include>gems/subspawn-0.1.1*/**/*</include>
<include>gems/subspawn-posix-0.1.1*/**/*</include>
Expand Down Expand Up @@ -1259,7 +1259,7 @@ DO NOT MODIFY - GENERATED CODE
<include>cache/securerandom-0.2.0*</include>
<include>cache/shellwords-0.1.0*</include>
<include>cache/singleton-0.1.1*</include>
<include>cache/stringio-3.0.5*</include>
<include>cache/stringio-3.0.8*</include>
<include>cache/strscan-3.0.6*</include>
<include>cache/subspawn-0.1.1*</include>
<include>cache/subspawn-posix-0.1.1*</include>
Expand Down
3 changes: 0 additions & 3 deletions spec/jruby.mspec
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ class MSpecScript
jruby = File.expand_path("../../bin/#{jruby}", __FILE__)
set :target, jruby

# exclude stringio specs until we can address ruby/stringio#57
get(:library) << '^' + SPEC_DIR + '/library/stringio'

slow_specs = [
SPEC_DIR + '/core/process',
SPEC_DIR + '/core/io/popen',
Expand Down
1 change: 1 addition & 0 deletions spec/tags/ruby/library/stringio/each_line_tags.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
fails:An exception occurred during: stringio_each_separator
fails(https://github.com/ruby/stringio/pull/61):StringIO#each_line when passed a separator yields each paragraph with all separation characters when passed an empty String as separator
1 change: 1 addition & 0 deletions spec/tags/ruby/library/stringio/each_tags.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fails(https://github.com/ruby/stringio/pull/61):StringIO#each when passed a separator yields each paragraph with all separation characters when passed an empty String as separator

0 comments on commit 86e3b82

Please sign in to comment.