stringio 3.0.7-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: 918a26d1a61f97a90794e1facc44b862da649b865226a66ce5090867caf180d7
4
- data.tar.gz: 1c1e8813261ada5174ecb2b137630f4cf430976fa592d1bd20b5af0f9bdef80d
3
+ metadata.gz: 79ccfe104334627d141c077d6f7dc7dda6ad930edb4289be015f2120008ce170
4
+ data.tar.gz: 4d9c41e8eb1c7c9d3755c868055bf11ce178ca243c69ae8f4b9e74b77e1d4e5f
5
5
  SHA512:
6
- metadata.gz: 4160678b9960d9328b3f6216be56a3291bfe579b7a877d9fb91c55c9d598a7a3192dc63298045177d011e681aa5ac9acba5e2157ea13f313b7b264aba2591a77
7
- data.tar.gz: c617dd5cfff522b45a509a08c8af23bea978835648a310d782d738c4337fd5eaea2ec940a7acfd6d2ab963b3f1ffa79a49daeebef00b87ccea856d1413d931af
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.7
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-06-02 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
  - - ">="
@@ -42,7 +42,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
42
42
  - !ruby/object:Gem::Version
43
43
  version: '0'
44
44
  requirements: []
45
- rubygems_version: 3.3.25
45
+ rubygems_version: 3.3.26
46
46
  signing_key:
47
47
  specification_version: 4
48
48
  summary: Pseudo IO on String
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