stringio 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of stringio might be problematic. Click here for more details.
- checksums.yaml +5 -5
- data/README.md +32 -0
- data/{extconf.rb → ext/stringio/extconf.rb} +0 -0
- data/{stringio.c → ext/stringio/stringio.c} +1 -0
- metadata +7 -9
- data/depend +0 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 7fe0c0966c5d325821cf8f32c86b12b8b7def4f6
|
4
|
+
data.tar.gz: 30143038585ac84c66ee9a5d09305343b2adf36e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3b0f2a85ceaa075db032b3f6cdced4ec4e4f18532c63b5185253b1f44470c1b0cce55b2b6fcadfdf498c766ea8f3b1f6c784272dccd45efa6cce59efa51456a
|
7
|
+
data.tar.gz: 9dacd4e043378988e412706b5ac2bac1db90a010598c58c8f3b64c1c09023dac786f336e1c7d5b10b66c6d79dc733d620f3e7cb251534dfc1943f3eff3ef8e9a
|
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# StringIO
|
2
2
|
|
3
|
+
[![Build Status](https://travis-ci.org/ruby/stringio.svg?branch=master)](https://travis-ci.org/ruby/stringio)
|
4
|
+
|
3
5
|
Pseudo `IO` class from/to `String`.
|
4
6
|
|
5
7
|
This library is based on MoonWolf version written in Ruby. Thanks a lot.
|
@@ -8,3 +10,33 @@ This library is based on MoonWolf version written in Ruby. Thanks a lot.
|
|
8
10
|
|
9
11
|
* `fileno` raises `NotImplementedError`.
|
10
12
|
* encoding conversion is not implemented, and ignored silently.
|
13
|
+
|
14
|
+
## Installation
|
15
|
+
|
16
|
+
Add this line to your application's Gemfile:
|
17
|
+
|
18
|
+
```ruby
|
19
|
+
gem 'stringio'
|
20
|
+
```
|
21
|
+
|
22
|
+
And then execute:
|
23
|
+
|
24
|
+
$ bundle
|
25
|
+
|
26
|
+
Or install it yourself as:
|
27
|
+
|
28
|
+
$ gem install stringio
|
29
|
+
|
30
|
+
## Development
|
31
|
+
|
32
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
33
|
+
|
34
|
+
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).
|
35
|
+
|
36
|
+
## Contributing
|
37
|
+
|
38
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/ruby/stringio.
|
39
|
+
|
40
|
+
## License
|
41
|
+
|
42
|
+
The gem is available as open source under the terms of the [2-Clause BSD License](https://opensource.org/licenses/BSD-2-Clause).
|
File without changes
|
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stringio
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nobu Nakada
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
|
-
cert_chain:
|
11
|
-
-
|
12
|
-
date: 2016-06-09 00:00:00.000000000 Z
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-11-04 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: rake-compiler
|
@@ -29,13 +28,12 @@ description: Pseudo `IO` class from/to `String`.
|
|
29
28
|
email: nobu@ruby-lang.org
|
30
29
|
executables: []
|
31
30
|
extensions:
|
32
|
-
- extconf.rb
|
31
|
+
- ext/stringio/extconf.rb
|
33
32
|
extra_rdoc_files: []
|
34
33
|
files:
|
35
34
|
- README.md
|
36
|
-
-
|
37
|
-
-
|
38
|
-
- stringio.c
|
35
|
+
- ext/stringio/extconf.rb
|
36
|
+
- ext/stringio/stringio.c
|
39
37
|
homepage: https://github.com/ruby/stringio
|
40
38
|
licenses:
|
41
39
|
- BSD-2-Clause
|
@@ -56,7 +54,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
56
54
|
version: '2.6'
|
57
55
|
requirements: []
|
58
56
|
rubyforge_project:
|
59
|
-
rubygems_version: 2.
|
57
|
+
rubygems_version: 2.6.14.3
|
60
58
|
signing_key:
|
61
59
|
specification_version: 4
|
62
60
|
summary: Pseudo IO on String
|
data/depend
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
# AUTOGENERATED DEPENDENCIES START
|
2
|
-
stringio.o: $(RUBY_EXTCONF_H)
|
3
|
-
stringio.o: $(arch_hdrdir)/ruby/config.h
|
4
|
-
stringio.o: $(hdrdir)/ruby/backward.h
|
5
|
-
stringio.o: $(hdrdir)/ruby/defines.h
|
6
|
-
stringio.o: $(hdrdir)/ruby/encoding.h
|
7
|
-
stringio.o: $(hdrdir)/ruby/intern.h
|
8
|
-
stringio.o: $(hdrdir)/ruby/io.h
|
9
|
-
stringio.o: $(hdrdir)/ruby/missing.h
|
10
|
-
stringio.o: $(hdrdir)/ruby/onigmo.h
|
11
|
-
stringio.o: $(hdrdir)/ruby/oniguruma.h
|
12
|
-
stringio.o: $(hdrdir)/ruby/ruby.h
|
13
|
-
stringio.o: $(hdrdir)/ruby/st.h
|
14
|
-
stringio.o: $(hdrdir)/ruby/subst.h
|
15
|
-
stringio.o: $(top_srcdir)/include/ruby.h
|
16
|
-
stringio.o: stringio.c
|
17
|
-
# AUTOGENERATED DEPENDENCIES END
|