stringio 0.0.1

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.

Files changed (6) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +10 -0
  3. data/depend +17 -0
  4. data/extconf.rb +3 -0
  5. data/stringio.c +1730 -0
  6. metadata +63 -0
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: stringio
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Nobu Nakada
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain:
11
+ - certs/nobu.pem
12
+ date: 2016-06-09 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rake-compiler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ">="
19
+ - !ruby/object:Gem::Version
20
+ version: '0'
21
+ type: :development
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ version: '0'
28
+ description: Pseudo `IO` class from/to `String`.
29
+ email: nobu@ruby-lang.org
30
+ executables: []
31
+ extensions:
32
+ - extconf.rb
33
+ extra_rdoc_files: []
34
+ files:
35
+ - README.md
36
+ - depend
37
+ - extconf.rb
38
+ - stringio.c
39
+ homepage: https://github.com/ruby/stringio
40
+ licenses:
41
+ - BSD-2-Clause
42
+ metadata: {}
43
+ post_install_message:
44
+ rdoc_options: []
45
+ require_paths:
46
+ - lib
47
+ required_ruby_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: '2.2'
52
+ required_rubygems_version: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: '2.6'
57
+ requirements: []
58
+ rubyforge_project:
59
+ rubygems_version: 2.7.6
60
+ signing_key:
61
+ specification_version: 4
62
+ summary: Pseudo IO on String
63
+ test_files: []