rbs 2.0.0 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +5 -0
- data/CHANGELOG.md +23 -0
- data/README.md +6 -1
- data/core/array.rbs +2866 -1086
- data/core/basic_object.rbs +150 -30
- data/core/binding.rbs +33 -0
- data/core/builtin.rbs +4 -4
- data/core/class.rbs +43 -5
- data/core/comparable.rbs +57 -0
- data/core/complex.rbs +170 -4
- data/core/constants.rbs +51 -0
- data/core/deprecated.rbs +7 -0
- data/core/dir.rbs +305 -20
- data/core/encoding.rbs +472 -77
- data/core/enumerable.rbs +2173 -234
- data/core/enumerator.rbs +448 -182
- data/core/env.rbs +448 -1
- data/core/errno.rbs +1 -10
- data/core/errors.rbs +152 -2
- data/core/exception.rbs +201 -127
- data/core/false_class.rbs +27 -0
- data/core/fiber.rbs +118 -37
- data/core/fiber_error.rbs +8 -9
- data/core/file.rbs +1059 -139
- data/core/file_test.rbs +287 -32
- data/core/float.rbs +776 -300
- data/core/gc.rbs +185 -34
- data/core/global_variables.rbs +5 -1
- data/core/hash.rbs +1582 -649
- data/core/integer.rbs +974 -204
- data/core/io/buffer.rbs +710 -0
- data/core/io/wait.rbs +29 -8
- data/core/io.rbs +2438 -417
- data/core/kernel.rbs +2315 -316
- data/core/marshal.rbs +37 -2
- data/core/match_data.rbs +123 -6
- data/core/math.rbs +126 -6
- data/core/method.rbs +226 -102
- data/core/module.rbs +421 -45
- data/core/nil_class.rbs +64 -0
- data/core/numeric.rbs +620 -142
- data/core/object.rbs +453 -81
- data/core/object_space.rbs +92 -2
- data/core/proc.rbs +482 -285
- data/core/process.rbs +443 -34
- data/core/ractor.rbs +232 -9
- data/core/random.rbs +151 -52
- data/core/range.rbs +885 -160
- data/core/rational.rbs +122 -6
- data/core/rb_config.rbs +14 -4
- data/core/refinement.rbs +44 -0
- data/core/regexp.rbs +156 -14
- data/core/ruby_vm.rbs +42 -3
- data/core/signal.rbs +78 -39
- data/core/string.rbs +2123 -567
- data/core/string_io.rbs +204 -0
- data/core/struct.rbs +283 -28
- data/core/symbol.rbs +304 -30
- data/core/thread.rbs +1288 -688
- data/core/thread_group.rbs +66 -10
- data/core/time.rbs +643 -217
- data/core/trace_point.rbs +100 -12
- data/core/true_class.rbs +24 -0
- data/core/unbound_method.rbs +73 -7
- data/core/warning.rbs +37 -12
- data/docs/CONTRIBUTING.md +40 -34
- data/docs/stdlib.md +3 -102
- data/lib/rbs/annotate/annotations.rb +197 -0
- data/lib/rbs/annotate/formatter.rb +80 -0
- data/lib/rbs/annotate/rdoc_annotator.rb +398 -0
- data/lib/rbs/annotate/rdoc_source.rb +120 -0
- data/lib/rbs/annotate.rb +6 -0
- data/lib/rbs/cli.rb +45 -1
- data/lib/rbs/definition_builder.rb +5 -1
- data/lib/rbs/location_aux.rb +12 -0
- data/lib/rbs/prototype/rb.rb +12 -0
- data/lib/rbs/version.rb +1 -1
- data/sig/annotate/annotations.rbs +102 -0
- data/sig/annotate/formatter.rbs +24 -0
- data/sig/annotate/rdoc_annotater.rbs +82 -0
- data/sig/annotate/rdoc_source.rbs +30 -0
- data/sig/cli.rbs +2 -0
- data/sig/collection/{collections.rbs → sources.rbs} +0 -0
- data/sig/location.rbs +6 -0
- data/sig/method_types.rbs +5 -1
- data/sig/polyfill.rbs +78 -0
- data/stdlib/abbrev/0/abbrev.rbs +6 -0
- data/stdlib/abbrev/0/array.rbs +26 -0
- data/stdlib/base64/0/base64.rbs +31 -0
- data/stdlib/benchmark/0/benchmark.rbs +74 -3
- data/stdlib/bigdecimal/0/big_decimal.rbs +614 -165
- data/stdlib/bigdecimal-math/0/big_math.rbs +41 -64
- data/stdlib/cgi/0/core.rbs +59 -0
- data/stdlib/coverage/0/coverage.rbs +164 -2
- data/stdlib/csv/0/csv.rbs +2862 -398
- data/stdlib/date/0/date.rbs +483 -25
- data/stdlib/date/0/date_time.rbs +187 -12
- data/stdlib/dbm/0/dbm.rbs +152 -17
- data/stdlib/digest/0/digest.rbs +146 -0
- data/stdlib/erb/0/erb.rbs +65 -245
- data/stdlib/fiber/0/fiber.rbs +73 -91
- data/stdlib/fileutils/0/fileutils.rbs +301 -1
- data/stdlib/find/0/find.rbs +9 -0
- data/stdlib/forwardable/0/forwardable.rbs +65 -1
- data/stdlib/io-console/0/io-console.rbs +227 -15
- data/stdlib/ipaddr/0/ipaddr.rbs +161 -0
- data/stdlib/json/0/json.rbs +1146 -144
- data/stdlib/logger/0/formatter.rbs +24 -0
- data/stdlib/logger/0/log_device.rbs +64 -0
- data/stdlib/logger/0/logger.rbs +165 -13
- data/stdlib/logger/0/period.rbs +10 -0
- data/stdlib/logger/0/severity.rbs +26 -0
- data/stdlib/monitor/0/monitor.rbs +163 -0
- data/stdlib/mutex_m/0/mutex_m.rbs +35 -6
- data/stdlib/net-http/0/net-http.rbs +1492 -683
- data/stdlib/nkf/0/nkf.rbs +372 -0
- data/stdlib/objspace/0/objspace.rbs +149 -90
- data/stdlib/openssl/0/openssl.rbs +8108 -71
- data/stdlib/optparse/0/optparse.rbs +487 -19
- data/stdlib/pathname/0/pathname.rbs +425 -124
- data/stdlib/prettyprint/0/prettyprint.rbs +120 -99
- data/stdlib/prime/0/integer-extension.rbs +20 -2
- data/stdlib/prime/0/prime.rbs +88 -21
- data/stdlib/pstore/0/pstore.rbs +102 -0
- data/stdlib/pty/0/pty.rbs +64 -14
- data/stdlib/resolv/0/resolv.rbs +420 -31
- data/stdlib/rubygems/0/basic_specification.rbs +4 -1
- data/stdlib/rubygems/0/config_file.rbs +33 -1
- data/stdlib/rubygems/0/dependency_installer.rbs +4 -3
- data/stdlib/rubygems/0/installer.rbs +13 -1
- data/stdlib/rubygems/0/path_support.rbs +4 -1
- data/stdlib/rubygems/0/platform.rbs +5 -1
- data/stdlib/rubygems/0/request_set.rbs +44 -2
- data/stdlib/rubygems/0/requirement.rbs +65 -2
- data/stdlib/rubygems/0/rubygems.rbs +407 -0
- data/stdlib/rubygems/0/source_list.rbs +13 -0
- data/stdlib/rubygems/0/specification.rbs +21 -1
- data/stdlib/rubygems/0/stream_ui.rbs +3 -1
- data/stdlib/rubygems/0/uninstaller.rbs +8 -1
- data/stdlib/rubygems/0/version.rbs +60 -157
- data/stdlib/securerandom/0/securerandom.rbs +44 -0
- data/stdlib/set/0/set.rbs +420 -106
- data/stdlib/shellwords/0/shellwords.rbs +55 -77
- data/stdlib/singleton/0/singleton.rbs +20 -0
- data/stdlib/socket/0/addrinfo.rbs +210 -9
- data/stdlib/socket/0/basic_socket.rbs +103 -11
- data/stdlib/socket/0/ip_socket.rbs +31 -9
- data/stdlib/socket/0/socket.rbs +586 -38
- data/stdlib/socket/0/tcp_server.rbs +22 -2
- data/stdlib/socket/0/tcp_socket.rbs +12 -1
- data/stdlib/socket/0/udp_socket.rbs +25 -2
- data/stdlib/socket/0/unix_server.rbs +22 -2
- data/stdlib/socket/0/unix_socket.rbs +45 -5
- data/stdlib/strscan/0/string_scanner.rbs +210 -9
- data/stdlib/tempfile/0/tempfile.rbs +58 -10
- data/stdlib/time/0/time.rbs +208 -116
- data/stdlib/timeout/0/timeout.rbs +10 -0
- data/stdlib/tmpdir/0/tmpdir.rbs +13 -4
- data/stdlib/tsort/0/cyclic.rbs +1 -0
- data/stdlib/tsort/0/interfaces.rbs +1 -0
- data/stdlib/tsort/0/tsort.rbs +42 -0
- data/stdlib/uri/0/common.rbs +57 -8
- data/stdlib/uri/0/file.rbs +55 -109
- data/stdlib/uri/0/ftp.rbs +6 -3
- data/stdlib/uri/0/generic.rbs +556 -327
- data/stdlib/uri/0/http.rbs +26 -115
- data/stdlib/uri/0/https.rbs +8 -102
- data/stdlib/uri/0/ldap.rbs +143 -137
- data/stdlib/uri/0/ldaps.rbs +8 -102
- data/stdlib/uri/0/mailto.rbs +3 -0
- data/stdlib/uri/0/rfc2396_parser.rbs +66 -26
- data/stdlib/uri/0/ws.rbs +6 -3
- data/stdlib/uri/0/wss.rbs +5 -3
- data/stdlib/yaml/0/dbm.rbs +151 -87
- data/stdlib/yaml/0/store.rbs +6 -0
- data/stdlib/zlib/0/zlib.rbs +90 -31
- metadata +17 -5
- data/lib/rbs/location.rb +0 -221
@@ -0,0 +1,372 @@
|
|
1
|
+
# <!-- rdoc-file=ext/nkf/nkf.c -->
|
2
|
+
# NKF - Ruby extension for Network Kanji Filter
|
3
|
+
#
|
4
|
+
# ## Description
|
5
|
+
#
|
6
|
+
# This is a Ruby Extension version of nkf (Network Kanji Filter). It converts
|
7
|
+
# the first argument and returns converted result. Conversion details are
|
8
|
+
# specified by flags as the first argument.
|
9
|
+
#
|
10
|
+
# **Nkf** is a yet another kanji code converter among networks, hosts and
|
11
|
+
# terminals. It converts input kanji code to designated kanji code such as
|
12
|
+
# ISO-2022-JP, Shift_JIS, EUC-JP, UTF-8 or UTF-16.
|
13
|
+
#
|
14
|
+
# One of the most unique faculty of **nkf** is the guess of the input kanji
|
15
|
+
# encodings. It currently recognizes ISO-2022-JP, Shift_JIS, EUC-JP, UTF-8 and
|
16
|
+
# UTF-16. So users needn't set the input kanji code explicitly.
|
17
|
+
#
|
18
|
+
# By default, X0201 kana is converted into X0208 kana. For X0201 kana, SO/SI,
|
19
|
+
# SSO and ESC-(-I methods are supported. For automatic code detection, nkf
|
20
|
+
# assumes no X0201 kana in Shift_JIS. To accept X0201 in Shift_JIS, use **-X**,
|
21
|
+
# **-x** or **-S**.
|
22
|
+
#
|
23
|
+
# ## Flags
|
24
|
+
#
|
25
|
+
# ### -b -u
|
26
|
+
#
|
27
|
+
# Output is buffered (DEFAULT), Output is unbuffered.
|
28
|
+
#
|
29
|
+
# ### -j -s -e -w -w16 -w32
|
30
|
+
#
|
31
|
+
# Output code is ISO-2022-JP (7bit JIS), Shift_JIS, EUC-JP, UTF-8N, UTF-16BE,
|
32
|
+
# UTF-32BE. Without this option and compile option, ISO-2022-JP is assumed.
|
33
|
+
#
|
34
|
+
# ### -J -S -E -W -W16 -W32
|
35
|
+
#
|
36
|
+
# Input assumption is JIS 7 bit, Shift_JIS, EUC-JP, UTF-8, UTF-16, UTF-32.
|
37
|
+
#
|
38
|
+
# #### -J
|
39
|
+
#
|
40
|
+
# Assume JIS input. It also accepts EUC-JP. This is the default. This flag does
|
41
|
+
# not exclude Shift_JIS.
|
42
|
+
#
|
43
|
+
# #### -S
|
44
|
+
#
|
45
|
+
# Assume Shift_JIS and X0201 kana input. It also accepts JIS. EUC-JP is
|
46
|
+
# recognized as X0201 kana. Without **-x** flag, X0201 kana (halfwidth kana) is
|
47
|
+
# converted into X0208.
|
48
|
+
#
|
49
|
+
# #### -E
|
50
|
+
#
|
51
|
+
# Assume EUC-JP input. It also accepts JIS. Same as -J.
|
52
|
+
#
|
53
|
+
# ### -t
|
54
|
+
#
|
55
|
+
# No conversion.
|
56
|
+
#
|
57
|
+
# ### -i_
|
58
|
+
#
|
59
|
+
# Output sequence to designate JIS-kanji. (DEFAULT B)
|
60
|
+
#
|
61
|
+
# ### -o_
|
62
|
+
#
|
63
|
+
# Output sequence to designate ASCII. (DEFAULT B)
|
64
|
+
#
|
65
|
+
# ### -r
|
66
|
+
#
|
67
|
+
# {de/en}crypt ROT13/47
|
68
|
+
#
|
69
|
+
# ### -[h](123) --hiragana --katakana --katakana-hiragana
|
70
|
+
#
|
71
|
+
# -h1 --hiragana
|
72
|
+
# : Katakana to Hiragana conversion.
|
73
|
+
#
|
74
|
+
# -h2 --katakana
|
75
|
+
# : Hiragana to Katakana conversion.
|
76
|
+
#
|
77
|
+
# -h3 --katakana-hiragana
|
78
|
+
# : Katakana to Hiragana and Hiragana to Katakana conversion.
|
79
|
+
#
|
80
|
+
#
|
81
|
+
# ### -T
|
82
|
+
#
|
83
|
+
# Text mode output (MS-DOS)
|
84
|
+
#
|
85
|
+
# ### -l
|
86
|
+
#
|
87
|
+
# ISO8859-1 (Latin-1) support
|
88
|
+
#
|
89
|
+
# ### -f[`m` [- `n`]]
|
90
|
+
#
|
91
|
+
# Folding on `m` length with `n` margin in a line. Without this option, fold
|
92
|
+
# length is 60 and fold margin is 10.
|
93
|
+
#
|
94
|
+
# ### -F
|
95
|
+
#
|
96
|
+
# New line preserving line folding.
|
97
|
+
#
|
98
|
+
# ### -[Z](0-3)
|
99
|
+
#
|
100
|
+
# Convert X0208 alphabet (Fullwidth Alphabets) to ASCII.
|
101
|
+
#
|
102
|
+
# -Z -Z0
|
103
|
+
# : Convert X0208 alphabet to ASCII.
|
104
|
+
#
|
105
|
+
# -Z1
|
106
|
+
# : Converts X0208 kankaku to single ASCII space.
|
107
|
+
#
|
108
|
+
# -Z2
|
109
|
+
# : Converts X0208 kankaku to double ASCII spaces.
|
110
|
+
#
|
111
|
+
# -Z3
|
112
|
+
# : Replacing Fullwidth >, <, ", & into '>', '<', '"', '&' as
|
113
|
+
# in HTML.
|
114
|
+
#
|
115
|
+
#
|
116
|
+
# ### -X -x
|
117
|
+
#
|
118
|
+
# Assume X0201 kana in MS-Kanji. With **-X** or without this option, X0201 is
|
119
|
+
# converted into X0208 Kana. With **-x**, try to preserve X0208 kana and do not
|
120
|
+
# convert X0201 kana to X0208. In JIS output, ESC-(-I is used. In EUC output,
|
121
|
+
# SSO is used.
|
122
|
+
#
|
123
|
+
# ### -[B](0-2)
|
124
|
+
#
|
125
|
+
# Assume broken JIS-Kanji input, which lost ESC. Useful when your site is using
|
126
|
+
# old B-News Nihongo patch.
|
127
|
+
#
|
128
|
+
# -B1
|
129
|
+
# : allows any char after ESC-( or ESC-$.
|
130
|
+
#
|
131
|
+
# -B2
|
132
|
+
# : forces ASCII after NL.
|
133
|
+
#
|
134
|
+
#
|
135
|
+
# ### -I
|
136
|
+
#
|
137
|
+
# Replacing non iso-2022-jp char into a geta character (substitute character in
|
138
|
+
# Japanese).
|
139
|
+
#
|
140
|
+
# ### -d -c
|
141
|
+
#
|
142
|
+
# Delete r in line feed, Add r in line feed.
|
143
|
+
#
|
144
|
+
# ### -[m](BQN0)
|
145
|
+
#
|
146
|
+
# MIME ISO-2022-JP/ISO8859-1 decode. (DEFAULT) To see ISO8859-1 (Latin-1) -l is
|
147
|
+
# necessary.
|
148
|
+
#
|
149
|
+
# -mB
|
150
|
+
# : Decode MIME base64 encoded stream. Remove header or other part before
|
151
|
+
#
|
152
|
+
# conversion.
|
153
|
+
#
|
154
|
+
# -mQ
|
155
|
+
# : Decode MIME quoted stream. '_' in quoted stream is converted to space.
|
156
|
+
#
|
157
|
+
# -mN
|
158
|
+
# : Non-strict decoding.
|
159
|
+
#
|
160
|
+
# It allows line break in the middle of the base64 encoding.
|
161
|
+
#
|
162
|
+
# -m0
|
163
|
+
# : No MIME decode.
|
164
|
+
#
|
165
|
+
#
|
166
|
+
# ### -M
|
167
|
+
#
|
168
|
+
# MIME encode. Header style. All ASCII code and control characters are intact.
|
169
|
+
# Kanji conversion is performed before encoding, so this cannot be used as a
|
170
|
+
# picture encoder.
|
171
|
+
#
|
172
|
+
# -MB
|
173
|
+
# : MIME encode Base64 stream.
|
174
|
+
#
|
175
|
+
# -MQ
|
176
|
+
# : Perform quoted encoding.
|
177
|
+
#
|
178
|
+
#
|
179
|
+
# ### -l
|
180
|
+
#
|
181
|
+
# Input and output code is ISO8859-1 (Latin-1) and ISO-2022-JP. **-s**, **-e**
|
182
|
+
# and **-x** are not compatible with this option.
|
183
|
+
#
|
184
|
+
# ### -[L](uwm)
|
185
|
+
#
|
186
|
+
# new line mode Without this option, nkf doesn't convert line breaks.
|
187
|
+
#
|
188
|
+
# -Lu
|
189
|
+
# : unix (LF)
|
190
|
+
#
|
191
|
+
# -Lw
|
192
|
+
# : windows (CRLF)
|
193
|
+
#
|
194
|
+
# -Lm
|
195
|
+
# : mac (CR)
|
196
|
+
#
|
197
|
+
#
|
198
|
+
# ### --fj --unix --mac --msdos --windows
|
199
|
+
#
|
200
|
+
# convert for these system
|
201
|
+
#
|
202
|
+
# ### --jis --euc --sjis --mime --base64
|
203
|
+
#
|
204
|
+
# convert for named code
|
205
|
+
#
|
206
|
+
# ### --jis-input --euc-input --sjis-input --mime-input --base64-input
|
207
|
+
#
|
208
|
+
# assume input system
|
209
|
+
#
|
210
|
+
# ### --ic=`input codeset` --oc=`output codeset`
|
211
|
+
#
|
212
|
+
# Set the input or output codeset. NKF supports following codesets and those
|
213
|
+
# codeset name are case insensitive.
|
214
|
+
#
|
215
|
+
# ISO-2022-JP
|
216
|
+
# : a.k.a. RFC1468, 7bit JIS, JUNET
|
217
|
+
#
|
218
|
+
# EUC-JP (eucJP-nkf)
|
219
|
+
# : a.k.a. AT&T JIS, Japanese EUC, UJIS
|
220
|
+
#
|
221
|
+
# eucJP-ascii
|
222
|
+
# : a.k.a. x-eucjp-open-19970715-ascii
|
223
|
+
#
|
224
|
+
# eucJP-ms
|
225
|
+
# : a.k.a. x-eucjp-open-19970715-ms
|
226
|
+
#
|
227
|
+
# CP51932
|
228
|
+
# : Microsoft Version of EUC-JP.
|
229
|
+
#
|
230
|
+
# Shift_JIS
|
231
|
+
# : SJIS, MS-Kanji
|
232
|
+
#
|
233
|
+
# Windows-31J
|
234
|
+
# : a.k.a. CP932
|
235
|
+
#
|
236
|
+
# UTF-8
|
237
|
+
# : same as UTF-8N
|
238
|
+
#
|
239
|
+
# UTF-8N
|
240
|
+
# : UTF-8 without BOM
|
241
|
+
#
|
242
|
+
# UTF-8-BOM
|
243
|
+
# : UTF-8 with BOM
|
244
|
+
#
|
245
|
+
# UTF-16
|
246
|
+
# : same as UTF-16BE
|
247
|
+
#
|
248
|
+
# UTF-16BE
|
249
|
+
# : UTF-16 Big Endian without BOM
|
250
|
+
#
|
251
|
+
# UTF-16BE-BOM
|
252
|
+
# : UTF-16 Big Endian with BOM
|
253
|
+
#
|
254
|
+
# UTF-16LE
|
255
|
+
# : UTF-16 Little Endian without BOM
|
256
|
+
#
|
257
|
+
# UTF-16LE-BOM
|
258
|
+
# : UTF-16 Little Endian with BOM
|
259
|
+
#
|
260
|
+
# UTF-32
|
261
|
+
# : same as UTF-32BE
|
262
|
+
#
|
263
|
+
# UTF-32BE
|
264
|
+
# : UTF-32 Big Endian without BOM
|
265
|
+
#
|
266
|
+
# UTF-32BE-BOM
|
267
|
+
# : UTF-32 Big Endian with BOM
|
268
|
+
#
|
269
|
+
# UTF-32LE
|
270
|
+
# : UTF-32 Little Endian without BOM
|
271
|
+
#
|
272
|
+
# UTF-32LE-BOM
|
273
|
+
# : UTF-32 Little Endian with BOM
|
274
|
+
#
|
275
|
+
# UTF8-MAC
|
276
|
+
# : NKDed UTF-8, a.k.a. UTF8-NFD (input only)
|
277
|
+
#
|
278
|
+
#
|
279
|
+
# ### --fb-{skip, html, xml, perl, java, subchar}
|
280
|
+
#
|
281
|
+
# Specify the way that nkf handles unassigned characters. Without this option,
|
282
|
+
# --fb-skip is assumed.
|
283
|
+
#
|
284
|
+
# ### --prefix= `escape character` `target character` ..
|
285
|
+
#
|
286
|
+
# When nkf converts to Shift_JIS, nkf adds a specified escape character to
|
287
|
+
# specified 2nd byte of Shift_JIS characters. 1st byte of argument is the escape
|
288
|
+
# character and following bytes are target characters.
|
289
|
+
#
|
290
|
+
# ### --no-cp932ext
|
291
|
+
#
|
292
|
+
# Handle the characters extended in CP932 as unassigned characters.
|
293
|
+
#
|
294
|
+
# ## --no-best-fit-chars
|
295
|
+
#
|
296
|
+
# When Unicode to Encoded byte conversion, don't convert characters which is not
|
297
|
+
# round trip safe. When Unicode to Unicode conversion, with this and -x option,
|
298
|
+
# nkf can be used as UTF converter. (In other words, without this and -x option,
|
299
|
+
# nkf doesn't save some characters)
|
300
|
+
#
|
301
|
+
# When nkf convert string which related to path, you should use this option.
|
302
|
+
#
|
303
|
+
# ### --cap-input
|
304
|
+
#
|
305
|
+
# Decode hex encoded characters.
|
306
|
+
#
|
307
|
+
# ### --url-input
|
308
|
+
#
|
309
|
+
# Unescape percent escaped characters.
|
310
|
+
#
|
311
|
+
# ### --
|
312
|
+
#
|
313
|
+
# Ignore rest of -option.
|
314
|
+
#
|
315
|
+
module NKF
|
316
|
+
# <!--
|
317
|
+
# rdoc-file=ext/nkf/nkf.c
|
318
|
+
# - NKF.guess(str) => encoding
|
319
|
+
# -->
|
320
|
+
# Returns guessed encoding of *str* by nkf routine.
|
321
|
+
#
|
322
|
+
def self.guess: (String str) -> Encoding
|
323
|
+
|
324
|
+
# <!--
|
325
|
+
# rdoc-file=ext/nkf/nkf.c
|
326
|
+
# - NKF.nkf(opt, str) => string
|
327
|
+
# -->
|
328
|
+
# Convert *str* and return converted result. Conversion details are specified by
|
329
|
+
# *opt* as String.
|
330
|
+
#
|
331
|
+
# require 'nkf'
|
332
|
+
# output = NKF.nkf("-s", input)
|
333
|
+
#
|
334
|
+
def self.nkf: (String opt, String str) -> String
|
335
|
+
end
|
336
|
+
|
337
|
+
NKF::ASCII: Encoding
|
338
|
+
|
339
|
+
NKF::AUTO: nil
|
340
|
+
|
341
|
+
NKF::BINARY: Encoding
|
342
|
+
|
343
|
+
NKF::EUC: Encoding
|
344
|
+
|
345
|
+
NKF::JIS: Encoding
|
346
|
+
|
347
|
+
# <!-- rdoc-file=ext/nkf/nkf.c -->
|
348
|
+
# Release date of nkf
|
349
|
+
#
|
350
|
+
NKF::NKF_RELEASE_DATE: String
|
351
|
+
|
352
|
+
# <!-- rdoc-file=ext/nkf/nkf.c -->
|
353
|
+
# Version of nkf
|
354
|
+
#
|
355
|
+
NKF::NKF_VERSION: String
|
356
|
+
|
357
|
+
NKF::NOCONV: nil
|
358
|
+
|
359
|
+
NKF::SJIS: Encoding
|
360
|
+
|
361
|
+
NKF::UNKNOWN: nil
|
362
|
+
|
363
|
+
NKF::UTF16: Encoding
|
364
|
+
|
365
|
+
NKF::UTF32: Encoding
|
366
|
+
|
367
|
+
NKF::UTF8: Encoding
|
368
|
+
|
369
|
+
# <!-- rdoc-file=ext/nkf/nkf.c -->
|
370
|
+
# Full version string of nkf
|
371
|
+
#
|
372
|
+
NKF::VERSION: String
|