ed-precompiled_stringio 3.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lib/stringio.rb ADDED
@@ -0,0 +1,7 @@
1
+ ruby_version = /(\d+\.\d+)/.match(::RUBY_VERSION)
2
+
3
+ begin
4
+ require "#{ruby_version}/stringio.so"
5
+ rescue LoadError
6
+ require "stringio.so"
7
+ end
metadata ADDED
@@ -0,0 +1,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ed-precompiled_stringio
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.1.8
5
+ platform: ruby
6
+ authors:
7
+ - Nobu Nakada
8
+ - Charles Oliver Nutter
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 1980-01-02 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Pseudo `IO` class from/to `String`.
14
+ email:
15
+ - nobu@ruby-lang.org
16
+ - headius@headius.com
17
+ executables: []
18
+ extensions:
19
+ - ext/stringio/extconf.rb
20
+ extra_rdoc_files:
21
+ - ".document"
22
+ - ".rdoc_options"
23
+ - COPYING
24
+ - LICENSE.txt
25
+ - NEWS.md
26
+ - README.md
27
+ - docs/io.rb
28
+ - ext/stringio/.document
29
+ files:
30
+ - ".document"
31
+ - ".rdoc_options"
32
+ - COPYING
33
+ - LICENSE.txt
34
+ - NEWS.md
35
+ - README.md
36
+ - docs/io.rb
37
+ - ext/stringio/.document
38
+ - ext/stringio/extconf.rb
39
+ - ext/stringio/stringio.c
40
+ - lib/stringio.rb
41
+ homepage: https://github.com/ruby/stringio
42
+ licenses:
43
+ - Ruby
44
+ - BSD-2-Clause
45
+ metadata:
46
+ changelog_uri: https://github.com/ruby/stringio/releases/tag/v3.1.8
47
+ rdoc_options: []
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '2.7'
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ requirements: []
61
+ rubygems_version: 3.6.7
62
+ specification_version: 4
63
+ summary: Pseudo IO on String
64
+ test_files: []