stringio 3.0.8-java → 3.0.9-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: 79ccfe104334627d141c077d6f7dc7dda6ad930edb4289be015f2120008ce170
4
+ data.tar.gz: 4d9c41e8eb1c7c9d3755c868055bf11ce178ca243c69ae8f4b9e74b77e1d4e5f
5
5
  SHA512:
6
- metadata.gz: 391b3615dc3637d228c74a8e5b406a04055876bed9b68bbc98be3f94feaa4192c05e8c87824fbdb006c0be323cc8c67dc5ab41e8d5c62766f75539735efa82e1
7
- data.tar.gz: 5e5649fb77d5c16c6664c42f5f979a361652c494a5c1e28fcbbe364c8c5a49b5749c14acfe7607758575ff1440f3be303e61566b3b9bd503a34a9f515fe3a943
6
+ metadata.gz: e0e0c736ea253c9c3a3491e344bfcfd503f49e1984ce5d1e48a94cb0f9447d28bbac7cadadec97f4e2b54133800787d6663ebe97402b8b0d6ebff963dc5b0dd5
7
+ data.tar.gz: 226e686e5ef3bc63d535eb14b4093ce8e639efbcc63d0c2265d5182fa8c194853be23d87a8fa8765b837e09093973d833d89a663776b4ba7ca119025831bc7eb
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.0.9
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-08 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