stringio 3.0.8-java → 3.1.0-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0d896a2870c71c9984cb0ca7fcdf510a343a39dce6dbea201aa9066af8874e61
4
- data.tar.gz: 2eb4ebf93feeff0a9403137399a0366cea17ad4c4d8143e8b138eb6b13f0c50a
3
+ metadata.gz: 6e3fc75014c55d5fd5f0ef2511a1059ebf587a9a92461b9b9938fa4539c935ab
4
+ data.tar.gz: fdb9d648bb5a8ff59f77cfc2446bfe916dddae336b3888ce079cdcd81c6a374b
5
5
  SHA512:
6
- metadata.gz: 391b3615dc3637d228c74a8e5b406a04055876bed9b68bbc98be3f94feaa4192c05e8c87824fbdb006c0be323cc8c67dc5ab41e8d5c62766f75539735efa82e1
7
- data.tar.gz: 5e5649fb77d5c16c6664c42f5f979a361652c494a5c1e28fcbbe364c8c5a49b5749c14acfe7607758575ff1440f3be303e61566b3b9bd503a34a9f515fe3a943
6
+ metadata.gz: be31fb248f499fa7469e9c1c758c397e27420c27cfca4d25f487a1fd7a3a10280896c362c5be069b751cb0f7055bd17c0883b9af33c05dc615ebe9b12af428fb
7
+ data.tar.gz: ff784166e3fddf1b50f7ede1f27bbae77ab3122bcdb0aedceb84f00483ca5b1f41d1e1bbc946df6593b5b7e8ba8915d8552c9fa2354c63edb685b8e8bd5407fc
data/README.md CHANGED
@@ -34,7 +34,7 @@ Or install it yourself as:
34
34
 
35
35
  Run `bundle install` to install dependencies and then `bundle exec rake test` to run the tests.
36
36
 
37
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
37
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, author a NEWS.md section, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
38
38
 
39
39
  ## Contributing
40
40
 
Binary file
@@ -0,0 +1,2 @@
1
+ require 'stringio.jar'
2
+ JRuby::Util.load_ext("org.jruby.ext.stringio.StringIOLibrary")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stringio
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.8
4
+ version: 3.1.0
5
5
  platform: java
6
6
  authors:
7
7
  - Nobu Nakada
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-08-10 00:00:00.000000000 Z
12
+ date: 2023-11-28 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Pseudo `IO` class from/to `String`.
15
15
  email:
@@ -20,8 +20,8 @@ extensions: []
20
20
  extra_rdoc_files: []
21
21
  files:
22
22
  - README.md
23
- - lib/stringio.jar
24
- - lib/stringio.rb
23
+ - lib/java/stringio.jar
24
+ - lib/java/stringio.rb
25
25
  homepage: https://github.com/ruby/stringio
26
26
  licenses:
27
27
  - Ruby
@@ -30,7 +30,7 @@ metadata: {}
30
30
  post_install_message:
31
31
  rdoc_options: []
32
32
  require_paths:
33
- - lib
33
+ - lib/java
34
34
  required_ruby_version: !ruby/object:Gem::Requirement
35
35
  requirements:
36
36
  - - ">="
data/lib/stringio.jar DELETED
Binary file
data/lib/stringio.rb DELETED
@@ -1,6 +0,0 @@
1
- if RUBY_ENGINE == 'jruby'
2
- require 'stringio.jar'
3
- JRuby::Util.load_ext("org.jruby.ext.stringio.StringIOLibrary")
4
- else
5
- require 'stringio.so'
6
- end