ed-precompiled_stringio 3.1.8-x86_64-linux

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.
Binary file
Binary file
Binary file
Binary file
Binary file
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
data/lib/stringio.so ADDED
Binary file
metadata ADDED
@@ -0,0 +1,72 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ed-precompiled_stringio
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.1.8
5
+ platform: x86_64-linux
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
+ extra_rdoc_files:
20
+ - ".document"
21
+ - ".rdoc_options"
22
+ - COPYING
23
+ - LICENSE.txt
24
+ - NEWS.md
25
+ - README.md
26
+ - docs/io.rb
27
+ - ext/stringio/.document
28
+ files:
29
+ - ".document"
30
+ - ".rdoc_options"
31
+ - COPYING
32
+ - LICENSE.txt
33
+ - NEWS.md
34
+ - README.md
35
+ - docs/io.rb
36
+ - ext/stringio/.document
37
+ - ext/stringio/extconf.rb
38
+ - ext/stringio/stringio.c
39
+ - lib/3.0/stringio.so
40
+ - lib/3.1/stringio.so
41
+ - lib/3.2/stringio.so
42
+ - lib/3.3/stringio.so
43
+ - lib/3.4/stringio.so
44
+ - lib/stringio.rb
45
+ - lib/stringio.so
46
+ homepage: https://github.com/ruby/stringio
47
+ licenses:
48
+ - Ruby
49
+ - BSD-2-Clause
50
+ metadata:
51
+ changelog_uri: https://github.com/ruby/stringio/releases/tag/v3.1.8
52
+ rdoc_options: []
53
+ require_paths:
54
+ - lib
55
+ required_ruby_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: '3.0'
60
+ - - "<"
61
+ - !ruby/object:Gem::Version
62
+ version: 3.5.dev
63
+ required_rubygems_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ requirements: []
69
+ rubygems_version: 3.6.7
70
+ specification_version: 4
71
+ summary: Pseudo IO on String
72
+ test_files: []