stringio 3.1.7-java → 3.1.9-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cc34cbbb2e9cfecad8b30dc79edc0f1016e6506f5bfea219e66f59d791e0a191
4
- data.tar.gz: 7b6dd9224f785197cc5f2ece955173cc1ba21459d23f8f91755db5620b245c9c
3
+ metadata.gz: 2bf8cf516912e3e4fea4524d8a50f635d9b467521b5971008258efda2328e82c
4
+ data.tar.gz: bec341cb22ab84e261a8e028f088ba230113140fe830a2333ff64289c484e662
5
5
  SHA512:
6
- metadata.gz: 113476b3f19825e47912ec035482b1ee2cdad58ea1e32cee89dab39d5f6f9fe045bedfa2dab6b2aa7e26f673fd9cc0e1c44b1f93ab8aebb14b3d78fe0f4efbbd
7
- data.tar.gz: bf5425a996c12eef1425b326f62c9e9a72c35189b19d74d7da6d70e8adf394c9370b33815e436cca3d6e03c8fa4411ed78bca6bdcf051f1a76ca2351c71810f0
6
+ metadata.gz: 906ccb6de9baaca00e86ff0d8a2455530c7102483a5823c5f92a101586a98de4c7427947475b728f861dd01df9c95dc979f5caf06a840ea4ec5db58572b712ef
7
+ data.tar.gz: 3695f3db4a3b3dbf723a59b14bb1a25b35e443cc19aa2ad9659b4e35bdb60a4ba0a6e7a10cd6cc61db3c1117e1652d5f8a6581a6b4d6c93e21c1e323c227d623
data/.rdoc_options CHANGED
@@ -1,2 +1,5 @@
1
1
  ---
2
2
  main_page: README.md
3
+ rdoc_include:
4
+ - doc
5
+ op_dir: html
data/NEWS.md CHANGED
@@ -1,5 +1,69 @@
1
1
  # News
2
2
 
3
+ ## 3.1.9 - 2025-12-01
4
+
5
+ ### Improvements
6
+
7
+ * [DOC] Tweaks for StringIO#each_line
8
+ * GH-165
9
+
10
+ * [DOC] Doc for StringIO.size
11
+ * GH-175
12
+
13
+ * [DOC] Tweaks for StringIO#fsync
14
+ * GH-173
15
+
16
+ * [DOC] Fix #seek link
17
+ * GH-174
18
+
19
+ * Add a note about chilled string support to 3.1.8 release note
20
+ * GH-180 fixes GH-179
21
+
22
+ ### Fixes
23
+
24
+ * JRuby: Removed use of RubyBasicObject.flags
25
+ * GH-182
26
+
27
+ ### Thanks
28
+
29
+ * Burdette Lamar
30
+
31
+ * Charles Oliver Nutter
32
+
33
+ ## 3.1.8 - 2025-11-12
34
+
35
+ ### Improvements
36
+
37
+ * Improved documents
38
+ * Patch by Burdette Lamar
39
+
40
+ * Improved chilled string support
41
+ * GH-128
42
+
43
+ ### Fixes
44
+
45
+ * Fixed SEGV in `StringIO#seek` with `SEEK_END` on `StringIO.new(nil)`
46
+ * GH-137
47
+ * Patch by koh-sh
48
+
49
+ * Fixed SEGV in `StringIO#read` on `StringIO.new(nil)`
50
+
51
+ * Fixed SEGV in `StringIO#pread` on `StringIO.new(nil)`
52
+
53
+ * Fixed SEGV in `StringIO#eof?` on `StringIO.new(nil)`
54
+
55
+ * JRuby: Fixed a bug that `StringIO#read` doesn't clear code range
56
+ * GH-156
57
+ * Patch by Karol Bucek
58
+
59
+ ### Thanks
60
+
61
+ * koh-sh
62
+
63
+ * Burdette Lamar
64
+
65
+ * Karol Bucek
66
+
3
67
  ## 3.1.7 - 2025-04-21
4
68
 
5
69
  ### Improvements
data/docs/io.rb CHANGED
@@ -1,8 +1,3 @@
1
- # :stopdoc:
1
+ # The {built-in class for I/O}[https://docs.ruby-lang.org/en/master/IO.html].
2
2
  class IO
3
- module generic_readable
4
- end
5
- module generic_writable
6
- end
7
3
  end
8
- # :startdoc:
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stringio
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.7
4
+ version: 3.1.9
5
5
  platform: java
6
6
  authors:
7
7
  - Nobu Nakada
8
8
  - Charles Oliver Nutter
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-04-21 00:00:00.000000000 Z
11
+ date: 2025-12-02 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Pseudo `IO` class from/to `String`.
14
14
  email:
@@ -41,7 +41,7 @@ licenses:
41
41
  - Ruby
42
42
  - BSD-2-Clause
43
43
  metadata:
44
- changelog_uri: https://github.com/ruby/stringio/releases/tag/v3.1.7
44
+ changelog_uri: https://github.com/ruby/stringio/releases/tag/v3.1.9
45
45
  rdoc_options: []
46
46
  require_paths:
47
47
  - lib/java
@@ -56,7 +56,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
56
56
  - !ruby/object:Gem::Version
57
57
  version: '0'
58
58
  requirements: []
59
- rubygems_version: 3.6.3
59
+ rubygems_version: 3.6.9
60
60
  specification_version: 4
61
61
  summary: Pseudo IO on String
62
62
  test_files: []