stringio 3.1.7-java → 3.1.8-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: 3296926104c4857107f0c4182c3071cebc37c454445b53cdd0accc0a6b582d2c
4
+ data.tar.gz: 1a296dc6a1e128494568a662cd0082c69b6f654da0ea9a7c714ccbe5e23a1072
5
5
  SHA512:
6
- metadata.gz: 113476b3f19825e47912ec035482b1ee2cdad58ea1e32cee89dab39d5f6f9fe045bedfa2dab6b2aa7e26f673fd9cc0e1c44b1f93ab8aebb14b3d78fe0f4efbbd
7
- data.tar.gz: bf5425a996c12eef1425b326f62c9e9a72c35189b19d74d7da6d70e8adf394c9370b33815e436cca3d6e03c8fa4411ed78bca6bdcf051f1a76ca2351c71810f0
6
+ metadata.gz: 6112eeaa77e61eb9aaec3d03de246e1e814bf04641edc9ee6fc9585c5a2e3e84cfdb372d1eee9ac8bece74a3ed48a898465df5d040534c0f856a14c36260b30a
7
+ data.tar.gz: e893fb8a3c7b1318e36f17dcbee068faedf459b9e002121ee3f31b551a6f97791732817638ce68bd300170020af44af83b59a88b976068fc792526697685abe9
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,36 @@
1
1
  # News
2
2
 
3
+ ## 3.1.8 - 2025-11-12
4
+
5
+ ### Improvements
6
+
7
+ * Improved documents
8
+ * Patch by Burdette Lamar
9
+
10
+ ### Fixes
11
+
12
+ * Fixed SEGV in `StringIO#seek` with `SEEK_END` on `StringIO.new(nil)`
13
+ * GH-137
14
+ * Patch by koh-sh
15
+
16
+ * Fixed SEGV in `StringIO#read` on `StringIO.new(nil)`
17
+
18
+ * Fixed SEGV in `StringIO#pread` on `StringIO.new(nil)`
19
+
20
+ * Fixed SEGV in `StringIO#eof?` on `StringIO.new(nil)`
21
+
22
+ * JRuby: Fixed a bug that `StringIO#read` doesn't clear code range
23
+ * GH-156
24
+ * Patch by Karol Bucek
25
+
26
+ ### Thanks
27
+
28
+ * koh-sh
29
+
30
+ * Burdette Lamar
31
+
32
+ * Karol Bucek
33
+
3
34
  ## 3.1.7 - 2025-04-21
4
35
 
5
36
  ### 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.8
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-11-12 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.8
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: []